You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
366 B

11 years ago
#ifndef COMPILECOMMAND_H_
#define COMPILECOMMAND_H_
#include "CompilationDatabase.h"
#include <vector>
namespace clang {
class CompileCommand {
public:
CompileCommand(int nth, CompileCommands &commands);
11 years ago
std::string get_command();
std::vector<std::string> get_command_as_args();
CXCompileCommand cx_command;
11 years ago
};
}
#endif // COMPILECOMMAND_H_