//===--- Tool.h - Compilation Tools -----------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_DRIVER_TOOL_H #define LLVM_CLANG_DRIVER_TOOL_H #include "clang/Basic/LLVM.h" namespace llvm { namespace opt { class ArgList; } } namespace clang { namespace driver { class Compilation; class InputInfo; class Job; class JobAction; class ToolChain; InputInfoList; /// Tool - Information on a specific compilation tool. class Tool { … }; } // end namespace driver } // end namespace clang #endif