forked from University/epr24pr5-ojanssen2
16 lines
286 B
C++
16 lines
286 B
C++
#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
|