Begin delete command implementation

这个提交包含在:
2019-04-07 20:22:20 +02:00
父节点 42a185cdd8
当前提交 2a1ee328cc
共有 9 个文件被更改,包括 167 次插入4 次删除

13
cli/commanddelete.h 普通文件
查看文件

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