#ifndef COMPILATIONDATABASE_H_ #define COMPILATIONDATABASE_H_ #include #include #include namespace clang { class CompilationDatabase { public: explicit CompilationDatabase(const std::string &project_path); ~CompilationDatabase(); CXCompilationDatabase cx_db; }; } #endif // COMPILATIONDATABASE_H_