Warning, file /include/root/TLink.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_TLink
0013 #define ROOT_TLink
0014
0015 #include "TText.h"
0016
0017 class TLink : public TText {
0018
0019 protected:
0020
0021 void *fLink{nullptr};
0022
0023 public:
0024 enum EStatusBits { kIsStarStar = BIT(2) };
0025 TLink();
0026 TLink(Double_t x, Double_t y, void *pointer);
0027 ~TLink() override;
0028 void ExecuteEvent(Int_t event, Int_t px, Int_t py) override;
0029
0030 ClassDefOverride(TLink,0)
0031 };
0032
0033 #endif