]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVE/Reve/FrameBoxGL.h
Dummy methods DefineParticle required by the interface added.
[u/mrichter/AliRoot.git] / EVE / Reve / FrameBoxGL.h
1 // $Header$
2
3 #ifndef REVE_FrameBoxGL_H
4 #define REVE_FrameBoxGL_H
5
6 #include <Reve/Reve.h>
7
8 namespace Reve {
9
10 class FrameBox;
11
12 class FrameBoxGL
13 {
14 private:
15   FrameBoxGL();                             // Not implemented
16   FrameBoxGL(const FrameBoxGL&);            // Not implemented
17   FrameBoxGL& operator=(const FrameBoxGL&); // Not implemented
18
19   static void RenderFrame(const FrameBox& b, Bool_t fillp);
20
21 public:
22   virtual ~FrameBoxGL() {}
23
24   static void Render(const FrameBox* box);
25
26   ClassDef(FrameBoxGL, 0);
27 }; // endclass FrameBoxGL
28
29 }
30
31 #endif