forked from University/epr24pr5-ojanssen2
9 lines
195 B
C++
9 lines
195 B
C++
#include "AddCommand.h"
|
|
|
|
namespace commands {
|
|
AddCommand::AddCommand() : SubCommand("add", 100) {}
|
|
|
|
void AddCommand::run(int argc, stringstream& args) {
|
|
cout << "Add!\n";
|
|
}
|
|
}
|