Start ATBUpdateSync

This commit is contained in:
2025-02-18 15:24:43 +01:00
parent b25b66395f
commit 87ce6a7d54
4 changed files with 152 additions and 0 deletions

14
Sync/sync_command.h Normal file
View File

@@ -0,0 +1,14 @@
#ifndef SYNC_COMMAND_H_INCLUDED
#define SYNC_COMMAND_H_INCLUDED
#include <QStringList>
class SyncCommand {
public:
SyncCommand();
bool exec(QString const &cmd, QStringList const &options,
int start_timeout = 100000, int finish_timeout = 100000);
};
#endif // SYNC_COMMAND_H_INCLUDED