]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVE/Reve/RGEditor.h
f247eeba3e214fb4fba260ab27f2a3cf6f105ea9
[u/mrichter/AliRoot.git] / EVE / Reve / RGEditor.h
1 // $Header$
2
3 #ifndef REVE_RGEditor_H
4 #define REVE_RGEditor_H
5
6 #include <TGedEditor.h>
7
8 namespace Reve {
9
10 class RenderElement;
11
12 class RGEditor : public TGedEditor
13 {
14 protected:
15   RenderElement* fRnrElement;
16
17 public:
18   RGEditor(TCanvas* canvas=0);
19   virtual ~RGEditor() {}
20   
21   void DisplayRenderElement(RenderElement* re);
22   void DisplayObject(TObject* obj);
23
24   virtual void Update(TGedFrame* gframe=0);
25
26   ClassDef(RGEditor, 1);
27 }; // endclass RGEditor
28
29 }
30
31 #endif