20 lines
319 B
C++
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
|