* avoid AST traversial for CXX translation units with fatal errors * save all files within those translation units as incomplete * show number of complete files in finished indexing dialog and overview stats * display incomplete files hatched in graph view * display incomplete file titles hatched in code view * mention file incompleteness in tooltips * removed derived Indexer classes and set ParserType via template parameter instead * moved getSourceFileFromCDB from IndexerCxxCdb to IndexerCommandCxxCdb bug id = 358
23 lines
327 B
C
23 lines
327 B
C
#ifndef STORAGE_STATS_H
|
|
#define STORAGE_STATS_H
|
|
|
|
struct StorageStats
|
|
{
|
|
StorageStats()
|
|
: nodeCount(0)
|
|
, edgeCount(0)
|
|
, fileCount(0)
|
|
, completedFileCount(0)
|
|
, fileLOCCount(0)
|
|
{}
|
|
|
|
size_t nodeCount;
|
|
size_t edgeCount;
|
|
|
|
size_t fileCount;
|
|
size_t completedFileCount;
|
|
size_t fileLOCCount;
|
|
};
|
|
|
|
#endif // STORAGE_STATS_H
|