epr24pr5-ojanssen2/ShowCommand.h
moonleay 9749953ed7
feat: finished implementing stubs in Manager
fix: fixed initial problems with impl
2025-02-09 21:14:26 +01:00

16 lines
277 B
C++

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