#ifndef ROOT_TRootApplication
#define ROOT_TRootApplication
#ifndef ROOT_TApplicationImp
#include "TApplicationImp.h"
#endif
class TGClient;
class TRootApplication : public TApplicationImp {
private:
TGClient *fClient;
char *fDisplay;
TRootApplication() { fClient = 0; fDisplay = 0; }
void GetOptions(Int_t *argc, char **argv);
public:
TRootApplication(const char *appClassName, Int_t *argc, char **argv);
virtual ~TRootApplication();
TGClient *Client() const { return fClient; }
void Show() { }
void Hide() { }
void Iconify() { }
Bool_t IsCmdThread();
void Init() { }
void Open() { }
void Raise() { }
void Lower() { }
ClassDef(TRootApplication,0)
};
#endif
Last change: Wed Jun 25 08:52:13 2008
Last generated: 2008-06-25 08:52
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.