]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVE/Reve/RGEditor.h
This commit was generated by cvs2svn to compensate for changes in r13732,
[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 RGEditor : public TGedEditor
11 {
12 protected:
13
14 public:
15   RGEditor(TCanvas* canvas=0);
16   virtual ~RGEditor() {}
17   
18   void DisplayObject(TObject* obj);
19   TGCanvas * GetCan() const {return fCan;}
20
21   ClassDef(RGEditor, 1);
22 }; // endclass RGEditor
23
24 }
25
26 #endif