#ifndef ROOT_TQtTimer
#define ROOT_TQtTimer
#include "Rtypes.h"
#ifndef __CINT__
# include <qtimer.h>
#else
class QTimer;
#endif
class TQtTimer : public QTimer {
#ifndef __CINT__
Q_OBJECT
#endif
private:
#if !defined(_MSC_VER) || _MSC_VER >= 1310
void operator=(const TQtTimer &) const {}
#endif
void operator=(const TQtTimer &) {}
TQtTimer(const TQtTimer &) : QTimer() {}
protected:
static TQtTimer *fgQTimer;
int fCounter;
TQtTimer (QObject *parent=0, const char *name=0): QTimer(parent,name),fCounter(0){}
protected slots:
virtual void AwakeRootEvent();
public:
virtual ~TQtTimer(){}
static TQtTimer *Create(QObject *parent=0, const char *name=0);
static TQtTimer *QtTimer();
ClassDef(TQtTimer,0)
};
inline TQtTimer *TQtTimer::QtTimer(){ return fgQTimer; }
#endif
ROOT page - Class index - Class Hierarchy - Top of the page
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.