Begin delete command implementation

This commit is contained in:
2019-04-07 20:22:20 +02:00
parent 1b896cbb2a
commit db499fb4b3
9 changed files with 152 additions and 3 deletions

13
cli/commanddelete.h Normal file
View File

@@ -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