1218893Sdim//===--- Tool.cpp - Compilation Tools -------------------------------------===//
2193326Sed//
3193326Sed//                     The LLVM Compiler Infrastructure
4193326Sed//
5193326Sed// This file is distributed under the University of Illinois Open Source
6193326Sed// License. See LICENSE.TXT for details.
7193326Sed//
8193326Sed//===----------------------------------------------------------------------===//
9193326Sed
10193326Sed#include "clang/Driver/Tool.h"
11193326Sed
12193326Sedusing namespace clang::driver;
13193326Sed
14208600SrdivackyTool::Tool(const char *_Name, const char *_ShortName,
15208600Srdivacky           const ToolChain &TC) : Name(_Name), ShortName(_ShortName),
16208600Srdivacky                                  TheToolChain(TC)
17208600Srdivacky{
18193326Sed}
19193326Sed
20193326SedTool::~Tool() {
21193326Sed}
22