14 lines
208 B
C
14 lines
208 B
C
|
#ifndef COMMANDTAG_H
|
||
|
#define COMMANDTAG_H
|
||
|
#include "command.h"
|
||
|
|
||
|
class CommandTag : public Command
|
||
|
{
|
||
|
public:
|
||
|
using Command::Command;
|
||
|
|
||
|
int handle(QStringList arguments) override;
|
||
|
};
|
||
|
|
||
|
#endif // COMMANDTAG_H
|