14 lines
244 B
C++
14 lines
244 B
C++
#pragma once
|
|
|
|
namespace clice::dependency {
|
|
|
|
/// 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
|