Implement CommandUpdate: Searches for files that have been changed and reprocesses them

This commit is contained in:
2019-04-16 08:51:27 +02:00
parent 8622717ded
commit 7eec5e9169
2 changed files with 106 additions and 3 deletions

View File

@@ -1,12 +1,11 @@
#ifndef COMMANDUPDATE_H
#define COMMANDUPDATE_H
#include "command.h"
#include "filesaver.h"
class CommandUpdate : public Command
{
public:
CommandUpdate();
using Command::Command;
int handle(QStringList arguments) override;
};