#ifndef COMPILECOMMAND_H_ #define COMPILECOMMAND_H_ #include #include #include namespace clang { class CompileCommand { public: CompileCommand(const CXCompileCommand& cx_command) : cx_command(cx_command) {}; std::string get_command(); std::vector get_command_as_args(); CXCompileCommand cx_command; }; } #endif // COMPILECOMMAND_H_