#ifndef DEBUGWORKER_H #define DEBUGWORKER_H #include #include "abstractworktype.h" class DebugWorker : public AbstractWorkType { public: DebugWorker(); void processWork(); private: unsigned int runCounter; }; #endif // DEBUGWORKER_H