File indexing completed on 2024-11-15 09:57:25
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012 #ifndef ROOT_TGLPShapeRef
0013 #define ROOT_TGLPShapeRef
0014
0015 #include <Rtypes.h>
0016
0017 class TGLPhysicalShape;
0018
0019 class TGLPShapeRef
0020 {
0021 friend class TGLPhysicalShape;
0022 private:
0023 TGLPShapeRef(const TGLPShapeRef&);
0024 TGLPShapeRef& operator=(const TGLPShapeRef&);
0025
0026 TGLPShapeRef * fNextPSRef;
0027
0028 protected:
0029 TGLPhysicalShape * fPShape;
0030
0031 public:
0032 TGLPShapeRef();
0033 TGLPShapeRef(TGLPhysicalShape * shape);
0034 virtual ~TGLPShapeRef();
0035
0036 TGLPhysicalShape * GetPShape() const { return fPShape; }
0037 virtual void SetPShape(TGLPhysicalShape * shape);
0038 virtual void PShapeModified();
0039
0040 ClassDef(TGLPShapeRef, 0);
0041 };
0042
0043
0044 #endif