#include "project.hpp" std::shared_ptr Project::current; std::shared_ptr Project::create() { return nullptr; } std::pair Project::Base::get_run_arguments() { return std::make_pair("", ""); } void Project::Base::compile() {} void Project::Base::compile_and_run() {} void Project::Base::recreate_build() {} std::pair Project::Base::debug_get_run_arguments() { return std::make_pair("", ""); } 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) {}