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