#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: Wed Jun 25 08:41:14 2008
Last generated: 2008-06-25 08:41
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.