mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-28 10:31:56 +00:00
14 lines
356 B
C
14 lines
356 B
C
|
#pragma once
|
||
|
|
||
|
#include "compilation_database_loader.h" // TODO: merge compilation_database_loader into this file.
|
||
|
|
||
|
#include <optional.h>
|
||
|
|
||
|
using std::experimental::optional;
|
||
|
using std::experimental::nullopt;
|
||
|
|
||
|
struct Project {
|
||
|
std::vector<CompilationEntry> entries;
|
||
|
|
||
|
optional<CompilationEntry> FindCompilationEntryForFile(const std::string& filename);
|
||
|
};
|