#ifndef CUSTOMTIMER_H #define CUSTOMTIMER_H #include #include #include "UserInfo.h" class CustomTimer : public QTimer { Q_OBJECT public: explicit CustomTimer(QObject *parent = 0); boost::signal TimerSignal; protected: virtual void timerEvent ( QTimerEvent * e ); }; #endif // CUSTOMTIMER_H