2019-04-07 20:22:20 +02:00
|
|
|
#ifndef COMMANDUPDATE_H
|
|
|
|
#define COMMANDUPDATE_H
|
|
|
|
#include "command.h"
|
2019-04-16 08:51:27 +02:00
|
|
|
#include "filesaver.h"
|
2019-04-07 20:22:20 +02:00
|
|
|
class CommandUpdate : public Command
|
|
|
|
{
|
2023-03-12 16:41:31 +01:00
|
|
|
protected:
|
|
|
|
bool hasErrors = false;
|
|
|
|
|
2019-04-07 20:22:20 +02:00
|
|
|
public:
|
2019-04-16 08:51:27 +02:00
|
|
|
using Command::Command;
|
2019-04-07 20:22:20 +02:00
|
|
|
int handle(QStringList arguments) override;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // COMMANDUPDATE_H
|