Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
TEveFrameBoxGL.h
Go to the documentation of this file.
1 // @(#)root/eve:$Id$
2 // Authors: Matevz Tadel & Alja Mrak-Tadel: 2006, 2007
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2007, Rene Brun and Fons Rademakers. *
6  * All rights reserved. *
7  * *
8  * For the licensing terms see $ROOTSYS/LICENSE. *
9  * For the list of contributors see $ROOTSYS/README/CREDITS. *
10  *************************************************************************/
11 
12 #ifndef ROOT_TEveFrameBoxGL
13 #define ROOT_TEveFrameBoxGL
14 
15 #include "TEveUtil.h"
16 
17 class TEveFrameBox;
18 
19 class TEveFrameBoxGL
20 {
21 private:
22  TEveFrameBoxGL(); // Not implemented
23  TEveFrameBoxGL(const TEveFrameBoxGL&); // Not implemented
24  TEveFrameBoxGL& operator=(const TEveFrameBoxGL&); // Not implemented
25 
26  static void RenderFrame(const TEveFrameBox& b, Bool_t fillp);
27 
28 public:
29  virtual ~TEveFrameBoxGL() {}
30 
31  static void Render(const TEveFrameBox* box);
32 
33  ClassDef(TEveFrameBoxGL, 0); // GL-renderer for TEveFrameBox class.
34 };
35 
36 #endif