// // C++ Interface: k9updatefactor // // Description: // // // Author: Jean-Michel PETIT , (C) 2007 // // Copyright: See COPYING file that comes with this distribution // // #ifndef K9UPDATEFACTOR_H #define K9UPDATEFACTOR_H #include "k9common.h" #include #include #include /** @author Jean-Michel PETIT */ class k9Main; class k9UpdateFactor : public TQObject, public TQThread { Q_OBJECT private: TQMutex m_mutex; bool m_restart; protected: void run(); public: k9UpdateFactor(TQObject *parent = 0, const char *name = 0); ~k9UpdateFactor(); void updateFactor(); signals: void updateFactor_internal(); }; #endif