23 lines
475 B
C++
23 lines
475 B
C++
#ifndef CPUWATCHDOGCONFIG_H
|
|
#define CPUWATCHDOGCONFIG_H
|
|
|
|
#include <QDataStream>
|
|
#include <QString>
|
|
|
|
|
|
class CCPUWatchdogConfig
|
|
{
|
|
public:
|
|
CCPUWatchdogConfig();
|
|
|
|
bool mWatchdogEnabled;
|
|
unsigned int mWatchdogTimeout;
|
|
|
|
CCPUWatchdogConfig &operator=(const CCPUWatchdogConfig &source);
|
|
|
|
};
|
|
|
|
QDataStream &operator<<(QDataStream &out, const CCPUWatchdogConfig &source);
|
|
QDataStream &operator>>(QDataStream &in, CCPUWatchdogConfig &dest);
|
|
#endif // CPUWATCHDOGCONFIG_H
|