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