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