18 lines
489 B
C
18 lines
489 B
C
|
#ifndef EXEC_OPKG_COMMAND_H_INCLUDED
|
||
|
#define EXEC_OPKG_COMMAND_H_INCLUDED
|
||
|
|
||
|
|
||
|
#include "update_command.h"
|
||
|
|
||
|
class ExecOpkgCommand : public UpdateCommand {
|
||
|
bool m_noaction{false};
|
||
|
public:
|
||
|
explicit ExecOpkgCommand(QString const &command,
|
||
|
Worker *worker,
|
||
|
bool noaction,
|
||
|
int start_timeout = 100000,
|
||
|
int finish_timeout = 100000);
|
||
|
};
|
||
|
|
||
|
#endif // EXEC_OPKG_COMMAND_H_INCLUDED
|