#include "SubCommand.h" #include namespace commands { SubCommand::SubCommand(const string& name, const int& return_value): name(name), return_value(return_value) {} void SubCommand::run(int argc, stringstream& args) { cout << "Not impl!\n"; } string SubCommand::get_name() { return this->name; } }