15 lines
309 B
C++
15 lines
309 B
C++
#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
|