Begin delete command implementation

此提交包含在:
2019-04-07 20:22:20 +02:00
父節點 1b896cbb2a
當前提交 db499fb4b3
共有 9 個檔案被更改,包括 152 行新增3 行删除

查看文件

@@ -17,6 +17,7 @@
#include "defaulttextprocessor.h"
#include "command.h"
#include "commandadd.h"
#include "commanddelete.h"
void printUsage(QString argv0)
{
qInfo() << "Usage: " << argv0 << "command";
@@ -30,6 +31,7 @@ Command *commandFromName(QString name, QString connectionstring)
}
if(name == "delete")
{
return new CommandDelete(connectionstring);
}
if(name == "update")
{