#ifndef CPUWATCHDOGCONFIG_H #define CPUWATCHDOGCONFIG_H #include #include 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