18 lines
325 B
C++
18 lines
325 B
C++
#pragma once
|
|
|
|
#include <Compiler/Clang.h>
|
|
|
|
namespace clice::dependencies {
|
|
|
|
void load(llvm::ArrayRef<llvm::StringRef> dirs);
|
|
|
|
/// Record the include graph of the translation unit.
|
|
struct IncludeGraph {};
|
|
|
|
/// Record the map between module name and file path.
|
|
struct ModuleMap {};
|
|
|
|
// TODO:
|
|
|
|
} // namespace clice::dependency
|