// This code implementation is the intellectual property of // the GEANT4 collaboration. // // By copying, distributing or modifying the Program (or any work // based on the Program) you indicate your acceptance of this statement, // and all its terms. // // $Id: G4BoundedSurfaceCreator.hh,v 1.3 2000/11/09 16:35:43 gcosmo Exp $ // GEANT4 tag $Name: geant4-03-00 $ // // ---------------------------------------------------------------------- // Class G4BoundedSurfaceCreator // // Class description: // // // Authors: J.Sulkimo, P.Urban. // Revisions by: L.Broglia, G.Cosmo. // // History: // 18-Nov-1999: First step of re-engineering - G.Cosmo // ---------------------------------------------------------------------- #ifndef G4BOUNDEDSURFACECREATOR_HH #define G4BOUNDEDSURFACECREATOR_HH #include "G4GeometryCreator.hh" class G4BoundedSurfaceCreator: private G4GeometryCreator { public: // Constructor & destructor G4BoundedSurfaceCreator(); ~G4BoundedSurfaceCreator(); // Member functions void CreateG4Geometry(STEPentity&); void CreateSTEPGeometry(void*); const char* Name() const { return "Bounded_Surface"; } static G4BoundedSurfaceCreator GetInstance() { return csc; } // Members private: static G4BoundedSurfaceCreator csc; }; #endif