Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /include/root/TEveFrameBoxGL.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 // @(#)root/eve:$Id$
0002 // Authors: Matevz Tadel & Alja Mrak-Tadel: 2006, 2007
0003 
0004 /*************************************************************************
0005  * Copyright (C) 1995-2007, Rene Brun and Fons Rademakers.               *
0006  * All rights reserved.                                                  *
0007  *                                                                       *
0008  * For the licensing terms see $ROOTSYS/LICENSE.                         *
0009  * For the list of contributors see $ROOTSYS/README/CREDITS.             *
0010  *************************************************************************/
0011 
0012 #ifndef ROOT_TEveFrameBoxGL
0013 #define ROOT_TEveFrameBoxGL
0014 
0015 #include "TEveUtil.h"
0016 
0017 class TEveFrameBox;
0018 
0019 class TEveFrameBoxGL
0020 {
0021 private:
0022    TEveFrameBoxGL();                             // Not implemented
0023    TEveFrameBoxGL(const TEveFrameBoxGL&);            // Not implemented
0024    TEveFrameBoxGL& operator=(const TEveFrameBoxGL&); // Not implemented
0025 
0026    static void RenderFrame(const TEveFrameBox& b, Bool_t fillp);
0027 
0028 public:
0029    virtual ~TEveFrameBoxGL() {}
0030 
0031    static void Render(const TEveFrameBox* box);
0032 
0033    ClassDef(TEveFrameBoxGL, 0); // GL-renderer for TEveFrameBox class.
0034 };
0035 
0036 #endif