epr24pr5-ojanssen2/AddCommand.cpp

10 lines
195 B
C++
Raw Normal View History

#include "AddCommand.h"
namespace commands {
AddCommand::AddCommand() : SubCommand("add", 100) {}
void AddCommand::run(int argc, stringstream& args) {
cout << "Add!\n";
}
}