#ifndef ROOT_TGLQuadric
#define ROOT_TGLQuadric
#ifndef ROOT_Rtypes
#include "Rtypes.h"
#endif
class GLUquadric;
class TGLQuadric
{
private:
   GLUquadric * fQuad;
protected:
   TGLQuadric(const TGLQuadric& glq) : fQuad(glq.fQuad) { }
   TGLQuadric& operator=(const TGLQuadric& glq)
     { if(this!=&glq) fQuad=glq.fQuad; return *this; }
public:
   TGLQuadric();
   virtual ~TGLQuadric(); 
   GLUquadric * Get();
   ClassDef(TGLQuadric,0) 
};
#endif
Last change: Tue May 13 17:12:58 2008
Last generated: 2008-05-13 17:12
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.