forked from University/epr24pr5-ojanssen2
14 lines
296 B
C++
14 lines
296 B
C++
#include "std_lib_inc.h"
|
|
#include "SubCommand.h"
|
|
#ifndef HELPCOMMAND_H
|
|
#define HELPCOMMAND_H
|
|
|
|
namespace commands {
|
|
class HelpCommand: public SubCommand {
|
|
public:
|
|
HelpCommand();
|
|
void run(int argc, stringstream& args) override;
|
|
};
|
|
}
|
|
#endif // HELPCOMMAND_H
|
|
|