mirror of
https://github.com/MaskRay/ccls.git
synced 2025-02-16 21:58:08 +00:00
12 lines
256 B
C++
12 lines
256 B
C++
#pragma once
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
|
|
struct IndexedFile;
|
|
|
|
std::string GetCachedFileName(std::string source_file);
|
|
|
|
std::unique_ptr<IndexedFile> LoadCachedFile(std::string filename);
|
|
|
|
void WriteToCache(std::string filename, IndexedFile& file); |