Begin delete command implementation

Esse commit está contido em:
2019-04-07 20:22:20 +02:00
commit 2a1ee328cc
9 arquivos alterados com 167 adições e 4 exclusões

13
cli/commanddelete.h Arquivo normal
Ver arquivo

@ -0,0 +1,13 @@
#ifndef COMMANDDELETE_H
#define COMMANDDELETE_H
#include "command.h"
class CommandDelete : public Command
{
public:
using Command::Command;
int handle(QStringList arguments) override;
};
#endif // COMMANDDELETE_H