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