12 #ifndef ROOT_TGLPShapeObj
13 #define ROOT_TGLPShapeObj
17 class TGLPhysicalShape;
20 class TGLPShapeObj :
public TObject
23 TGLPhysicalShape *fPShape;
26 TGLPShapeObj() : TObject(), fPShape(0), fViewer(0) {}
27 TGLPShapeObj(TGLPhysicalShape* sh, TGLViewer* v) :
28 TObject(), fPShape(sh), fViewer(v) {}
29 virtual ~TGLPShapeObj() {}
31 virtual const char* GetName()
const {
return "Selected"; }
34 TGLPShapeObj(
const TGLPShapeObj &);
35 TGLPShapeObj& operator=(
const TGLPShapeObj &);
37 ClassDef(TGLPShapeObj, 0)