adding commnds to execute

This commit is contained in:
2025-02-05 16:25:01 +01:00
parent b6f0615e9c
commit 7b4bee524f
20 changed files with 262 additions and 3 deletions

View File

@@ -0,0 +1,14 @@
#ifndef UPDATE_FS_COMMAND_H_INCLUDED
#define UPDATE_FS_COMMAND_H_INCLUDED
#include "update_command.h"
class UpdateFileSystemCommand : public UpdateCommand {
public:
explicit UpdateFileSystemCommand(QString const &command,
Worker *worker,
int start_timeout = 100000,
int finish_timeout = 100000);
};
#endif // UPDATE_FS_COMMAND_H_INCLUDED