Warning, file /include/root/TExec.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_TExec
0013 #define ROOT_TExec
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024 #include "TNamed.h"
0025
0026 class TExec : public TNamed {
0027
0028 public:
0029
0030 TExec();
0031 TExec(const char *name, const char *command);
0032 TExec(const TExec &text);
0033 virtual ~TExec();
0034 virtual void Exec(const char *command = "");
0035 void Paint(Option_t *option="") override;
0036 void SavePrimitive(std::ostream &out, Option_t *option = "") override;
0037 virtual void SetAction(const char *action) { SetTitle(action); }
0038
0039 ClassDefOverride(TExec,1);
0040 };
0041
0042 #endif