Files
clice/include/Index/TUIndex.h
2025-06-01 22:45:38 +08:00

20 lines
319 B
C++

#pragma once
#include "RawIndex.h"
#include "IncludeGraph.h"
namespace clice::index::memory {
class TUIndex : public RawIndex {
public:
public:
/// The time of building this index.
std::int64_t time;
/// The include graph of this index.
IncludeGraph graph;
};
} // namespace clice::index::memory