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.

24 lines
719 B

#include "project.hpp"
std::shared_ptr<Project::Base> Project::current;
std::shared_ptr<Project::Base> Project::create() { return nullptr; }
std::pair<std::string, std::string> Project::Base::get_run_arguments() {
return std::make_pair<std::string, std::string>("", "");
}
void Project::Base::compile() {}
void Project::Base::compile_and_run() {}
void Project::Base::recreate_build() {}
std::pair<std::string, std::string> Project::Base::debug_get_run_arguments() {
return std::make_pair<std::string, std::string>("", "");
}
void Project::Base::debug_compile_and_start() {}
void Project::Base::debug_start(const std::string &command, const boost::filesystem::path &path, const std::string &remote_host) {}