#ifndef ROOT_TGLPShapeRef
#define ROOT_TGLPShapeRef
#include <Rtypes.h>
class TGLPhysicalShape;
class TGLPShapeRef
{
friend class TGLPhysicalShape;
private:
TGLPShapeRef(const TGLPShapeRef&);
TGLPShapeRef& operator=(const TGLPShapeRef&);
TGLPShapeRef * fNextPSRef;
protected:
TGLPhysicalShape * fPShape;
public:
TGLPShapeRef();
TGLPShapeRef(TGLPhysicalShape * shape);
virtual ~TGLPShapeRef();
TGLPhysicalShape * GetPShape() const { return fPShape; }
virtual void SetPShape(TGLPhysicalShape * shape);
virtual void PShapeModified();
ClassDef(TGLPShapeRef, 0);
};
#endif
Last change: Mon Nov 24 08:19:16 2008
Last generated: 2008-11-24 08:19
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.