Warning, file /include/root/TEveMacro.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_TEveMacro
0013 #define ROOT_TEveMacro
0014
0015 #include "TEveUtil.h"
0016
0017 #include "TMacro.h"
0018
0019 class TEveMacro : public TMacro
0020 {
0021 protected:
0022
0023 public:
0024 TEveMacro();
0025 TEveMacro(const TEveMacro&);
0026 TEveMacro(const char* name);
0027 ~TEveMacro() override {}
0028
0029 Longptr_t Exec(const char* params = "0", Int_t* error = nullptr) override;
0030
0031 void ResetRoot();
0032
0033 ClassDefOverride(TEveMacro, 1);
0034 };
0035
0036 #endif