#ifndef ROOT_TQtApplication
#define ROOT_TQtApplication
#include "TQtRConfig.h"
#include "Rtypes.h"
class TQtApplicationThread;
class TQtApplication { 
  
private:
  friend class TQtApplicationThread;
  TQtApplicationThread  *fGUIThread;
  void    CreateGUIThread(int &argc, char **argv);
  static void CreateQApplication(int &argc, char ** argv, bool GUIenabled);
  void operator=(const TQtApplication&);
  TQtApplication(const TQtApplication&);
protected:
   static TQtApplication *fgQtApplication;
public:
   TQtApplication() {};
   TQtApplication(const char *appClassName, int &argc, char **argv);
   virtual ~TQtApplication();
   static bool Terminate();
   static TQtApplication *GetQtApplication();
   static bool IsThisGuiThread();
   static Int_t QtVersion();
   ClassDef(TQtApplication,0) 
};
#endif
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.