#pragma once #include #include #include using std::experimental::optional; using std::experimental::nullopt; struct IndexerConfig; struct IndexFile; std::unique_ptr LoadCachedIndex(IndexerConfig* config, const std::string& filename); optional LoadCachedFileContents(IndexerConfig* config, const std::string& filename); void WriteToCache(IndexerConfig* config, const std::string& filename, IndexFile& file, const optional& indexed_file_contents);