epr24pr5-ojanssen2/ActiveCommand.h

16 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