#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
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.