looqs/cli/commandtag.h

14 lines
208 B
C
Raw Normal View History

2023-04-02 21:39:50 +02:00
#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