]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVE/Reve/BoxSetGL.h
Added non-protected wrapper Render() for DirectDraw().
[u/mrichter/AliRoot.git] / EVE / Reve / BoxSetGL.h
1 // $Header$
2
3 #ifndef REVE_BoxSetGL_H
4 #define REVE_BoxSetGL_H
5
6 #include <TGLObject.h>
7
8 namespace Reve {
9
10 class BoxSetGL : public TGLObject
11 {
12 protected:
13   virtual void DirectDraw(const TGLDrawFlags & flags) const;
14
15 public:
16   BoxSetGL();
17   virtual ~BoxSetGL();
18
19   virtual Bool_t SetModel(TObject* obj);
20   virtual void   SetBBox();
21
22   virtual void Render(const TGLDrawFlags & flags) { DirectDraw(flags); }
23
24   ClassDef(BoxSetGL, 0);
25 }; // endclass BoxSetGL
26
27 }
28
29 #endif