#pragma once #include #include #include namespace clang { class CompileCommand { public: CompileCommand(const CXCompileCommand& cx_command); std::string get_command() const; std::vector get_command_as_args() const; CXCompileCommand cx_command; }; }