#ifndef G4Lab_Polyhedron_h #define G4Lab_Polyhedron_h // Inheritance : #include class G4Polyhedron; namespace G4Lab { class Polyhedron : public SbPolyhedron { public: Polyhedron(const G4Polyhedron&); virtual ~Polyhedron(); public: virtual Polyhedron& operator=(const Polyhedron&); virtual SbPolyhedron& operator=(const SbPolyhedron&); }; } #endif