forked from University/epr24pr5-ojanssen2
10 lines
295 B
C++
10 lines
295 B
C++
#include "HelpCommand.h"
|
|
|
|
namespace commands {
|
|
HelpCommand::HelpCommand(): SubCommand("help", 100) {}
|
|
|
|
void HelpCommand::run(int argc, stringstream& args) {
|
|
cout << "Projekt 5\n";
|
|
cout << "epr24pr5-ojanssen2 <add/delete/list/show/assign/unassign/active/help>\n";
|
|
}
|
|
}
|