// 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: G4SolidStore.hh,v 1.4 2000/04/20 16:49:48 gcosmo Exp $ // GEANT4 tag $Name: geant4-03-00 $ // // class G4SolidStore // // Class description: // // Container for all solids, with functionality derived from // G4RWTPtrOrderedVector. The class is a `singleton', in that only // one can exist, and access is provided via the static method // G4SolidStore::GetInstance(). // // All solids should be registered with G4SolidStore, and removed on their // destruction. Intended principally for UI browser. The underlying // container initially has a capacity of 100. // // If much additional functionality is added, should consider containment // instead of inheritance for G4RWTPtrOrderedVector // // Member data: // // static G4SolidStore* // - Ptr to the single G4SolidStore // History: // 10.07.95 P.Kent Initial version #ifndef G4VSOLIDSTORE_HH #define G4VSOLIDSTORE_HH #include "g4rw/tpordvec.h" #include "G4VSolid.hh" class G4SolidStore : public G4RWTPtrOrderedVector { public: // with description static void Register(G4VSolid* pSolid); // Add the solid to the collection. static void DeRegister(G4VSolid* pSolid); // Remove the solid from the collection. static G4SolidStore* GetInstance(); // Get a ptr to the unique G4SolidStore, creating it if necessary. virtual ~G4SolidStore(); // Default destructor. protected: G4SolidStore(); private: static G4SolidStore* fgInstance; }; #endif