epr24pr5-ojanssen2/ActiveCommand.h

17 lines
286 B
C
Raw Permalink Normal View History

#pragma once
#include "SubCommand.h"
#ifndef ACTIVECOMMAND_H
#define ACTIVECOMMAND_H
namespace commands {
class ActiveCommand : public SubCommand {
public:
ActiveCommand();
void run(stringstream& args) override;
};
} // commands
#endif //ACTIVECOMMAND_H