]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVE/Reve/RMacro.h
Record changes.
[u/mrichter/AliRoot.git] / EVE / Reve / RMacro.h
1 // $Header$
2
3 #ifndef REVE_RMacro_H
4 #define REVE_RMacro_H
5
6 #include <Reve/Reve.h>
7
8 #include <TMacro.h>
9
10 namespace Reve {
11
12 class RMacro : public TMacro
13 {
14 protected:
15
16 public:
17   RMacro();
18   RMacro(const RMacro&);
19   RMacro(const char* name);
20   virtual ~RMacro() {}
21
22   virtual Long_t Exec(const char* params = "0", Int_t* error = 0);
23
24   void ResetRoot();
25
26   ClassDef(RMacro, 1);
27 }; // endclass RMacro
28
29 }
30
31 #endif