clang 24.0.0git
Tool.cpp
Go to the documentation of this file.
1//===--- Tool.cpp - Compilation Tools -------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#include "clang/Driver/Tool.h"
10
11using namespace clang::driver;
12
13Tool::Tool(const char *_Name, const char *_ShortName, const ToolChain &TC)
14 : Name(_Name), ShortName(_ShortName), TheToolChain(TC) {}
15
ToolChain - Access to tools for a single platform.
Definition ToolChain.h:96
virtual ~Tool()
Definition Tool.cpp:16
Tool(const char *Name, const char *ShortName, const ToolChain &TC)
Definition Tool.cpp:13