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