#ifndef ROOT_TQRootApplication
#define ROOT_TQRootApplication
#ifndef __CINT__
#include "qapplication.h"
#include "qobject.h"
#include "qtimer.h"
#endif
#ifndef ROOT_Rtypes
#include "Rtypes.h"
#endif
class TTimer;
class QApplication;
class QTimer;
class TQRootApplication : public QApplication {
#ifndef __CINT__
Q_OBJECT
#endif
private:
TQRootApplication(const TQRootApplication &);
TQRootApplication& operator=(const TQRootApplication &);
protected:
QTimer *fQTimer;
TTimer *fRTimer;
public:
static Bool_t fgDebug, fgWarning;
TQRootApplication(int argc, char **argv,int poll=0);
~TQRootApplication();
void SetDebugOn(){ fgDebug=kTRUE; }
void SetWarningOn(){ fgWarning=kTRUE;}
public slots:
void Execute();
void Quit();
public:
ClassDef(TQRootApplication,1)
};
#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.