#pragma once #include #include #include #include "CompilationDatabase.h" #include "CompileCommand.h" namespace clang { class CompileCommands { public: CompileCommands(const CompilationDatabase& db); std::vector get_commands(); ~CompileCommands(); CXCompileCommands cx_commands; }; }