]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVE/Reve/EventBase.h
Add Getters and Setters in TrackRnrStyle and TrackList to define rendering of path...
[u/mrichter/AliRoot.git] / EVE / Reve / EventBase.h
1 // $Header$
2
3 #ifndef REVE_EventBase_H
4 #define REVE_EventBase_H
5
6 #include <Reve/RenderElement.h>
7
8 namespace Reve {
9
10 class EventBase : public RenderElementList
11 {
12 protected:
13
14 public:
15   EventBase(const Text_t* n="EventBase", const Text_t* t="");
16   virtual ~EventBase() {}
17
18   ClassDef(EventBase, 1);
19 }; // endclass Event
20
21 }
22
23 #endif