00001 // @(#)root/eve:$Id: TEveFrameBoxGL.h 21054 2007-11-26 18:00:41Z matevz $ 00002 // Authors: Matevz Tadel & Alja Mrak-Tadel: 2006, 2007 00003 00004 /************************************************************************* 00005 * Copyright (C) 1995-2007, Rene Brun and Fons Rademakers. * 00006 * All rights reserved. * 00007 * * 00008 * For the licensing terms see $ROOTSYS/LICENSE. * 00009 * For the list of contributors see $ROOTSYS/README/CREDITS. * 00010 *************************************************************************/ 00011 00012 #ifndef ROOT_TEveFrameBoxGL 00013 #define ROOT_TEveFrameBoxGL 00014 00015 #include "TEveUtil.h" 00016 00017 class TEveFrameBox; 00018 00019 class TEveFrameBoxGL 00020 { 00021 private: 00022 TEveFrameBoxGL(); // Not implemented 00023 TEveFrameBoxGL(const TEveFrameBoxGL&); // Not implemented 00024 TEveFrameBoxGL& operator=(const TEveFrameBoxGL&); // Not implemented 00025 00026 static void RenderFrame(const TEveFrameBox& b, Bool_t fillp); 00027 00028 public: 00029 virtual ~TEveFrameBoxGL() {} 00030 00031 static void Render(const TEveFrameBox* box); 00032 00033 ClassDef(TEveFrameBoxGL, 0); // GL-renderer for TEveFrameBox class. 00034 }; 00035 00036 #endif