]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVE/Reve/FrameBoxGL.h
Dealing with two different loaders for simulation and reconstruction if necessary...
[u/mrichter/AliRoot.git] / EVE / Reve / FrameBoxGL.h
CommitLineData
b7a5b6f9 1// $Header$
2
3#ifndef REVE_FrameBoxGL_H
4#define REVE_FrameBoxGL_H
5
6#include <Reve/Reve.h>
7
8namespace Reve {
9
10class FrameBox;
11
12class FrameBoxGL
13{
14private:
15 FrameBoxGL(); // Not implemented
16 FrameBoxGL(const FrameBoxGL&); // Not implemented
17 FrameBoxGL& operator=(const FrameBoxGL&); // Not implemented
18
19public:
20 static void Render(const FrameBox* box);
21
22 ClassDef(FrameBoxGL, 0);
23}; // endclass FrameBoxGL
24
25}
26
27#endif