| //===--- TranslationUnit.cpp - Abstraction for Translation Units ----------===// |
| // |
| // The LLVM Compiler Infrastructure |
| // |
| // This file is distributed under the University of Illinois Open Source |
| // License. See LICENSE.TXT for details. |
| // |
| // FIXME: This should eventually be moved out of the driver, or replaced |
| // with its eventual successor. |
| // |
| //===----------------------------------------------------------------------===// |
| |
| #include "clang/AST/TranslationUnit.h" |
| |
| #include "clang/Basic/TargetInfo.h" |
| #include "clang/Basic/SourceManager.h" |
| #include "clang/AST/AST.h" |
| |
| #include "llvm/Bitcode/Serialize.h" |
| #include "llvm/Bitcode/Deserialize.h" |
| #include "llvm/Support/MemoryBuffer.h" |
| #include "llvm/System/Path.h" |
| |
| #include "llvm/ADT/OwningPtr.h" |
| #include "llvm/ADT/DenseSet.h" |
| |
| using namespace clang; |
| |
| |
| TranslationUnit::~TranslationUnit() { |
| } |