Warning, file /include/root/TGApplication.h was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012 #ifndef ROOT_TGApplication
0013 #define ROOT_TGApplication
0014
0015
0016 #include "TApplication.h"
0017
0018 class TGClient;
0019
0020
0021 class TGApplication : public TApplication {
0022
0023 private:
0024 TString fDisplay;
0025 TGClient *fClient{nullptr};
0026
0027 protected:
0028 TGApplication() : TApplication() {}
0029 void LoadGraphicsLibs() override;
0030
0031 public:
0032 TGApplication(const char *appClassName,
0033 Int_t *argc, char **argv,
0034 void *options = nullptr, Int_t numOptions = 0);
0035 ~TGApplication() override;
0036
0037 void GetOptions(Int_t *argc, char **argv) override;
0038
0039 ClassDefOverride(TGApplication,0)
0040 };
0041
0042 #endif