]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVE/Reve/RMacro.h
Add Getters and Setters in TrackRnrStyle and TrackList to define rendering of path...
[u/mrichter/AliRoot.git] / EVE / Reve / RMacro.h
CommitLineData
6a187c6c 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
10namespace Reve {
11
12class RMacro : public TMacro
13{
14protected:
15
16public:
17 RMacro();
18 RMacro(const RMacro&);
8ca3710e 19 RMacro(const char* name);
6a187c6c 20 virtual ~RMacro() {}
21
22 virtual void Exec(const char* params = "0");
23
b7daeae6 24 void ResetRoot();
25
6a187c6c 26 ClassDef(RMacro, 1);
27}; // endclass RMacro
28
29}
30
31#endif