forked from University/epr24pr5-ojanssen2
15 lines
347 B
C++
15 lines
347 B
C++
|
#include "SubCommand.h"
|
||
|
#include <sstream>
|
||
|
|
||
|
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;
|
||
|
}
|
||
|
}
|