ccls/libclangmm/CompileCommand.h
Jacob Dufault ce4c2232d7 update
2017-02-22 00:52:00 -08:00

17 lines
325 B
C++

#pragma once
#include <clang-c/CXCompilationDatabase.h>
#include <vector>
#include <string>
namespace clang {
class CompileCommand {
public:
CompileCommand(const CXCompileCommand& cx_command);
std::string get_command() const;
std::vector<std::string> get_command_as_args() const;
CXCompileCommand cx_command;
};
}