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