| 47 | \*---------------------------------------------------------------------------*/ |
| 48 | |
| 49 | class surfaceRegistry |
| 50 | : |
| 51 | public objectRegistry |
| 52 | { |
| 53 | |
| 54 | // Private Member Functions |
| 55 | |
| 56 | //- Disallow default bitwise copy construct |
| 57 | surfaceRegistry(const surfaceRegistry&); |
| 58 | |
| 59 | //- Disallow default bitwise assignment |
| 60 | void operator=(const surfaceRegistry&); |
| 61 | |
| 62 | |
| 63 | public: |
| 64 | |
| 65 | //- Runtime type information |
| 66 | TypeName("surfaceRegistry"); |
| 67 | |
| 68 | //- The prefix to local: %surfaces |
| 69 | static const word prefix; |
| 70 | |
| 71 | //- The default surface name: %default |
| 72 | static word defaultName; |
| 73 | |
| 74 | |
| 75 | // Constructors |
| 76 | |
| 77 | //- Construct for the given objectRegistry and named surface |
| 78 | surfaceRegistry(const objectRegistry&, const word& surfName = ""); |
| 79 | |
| 80 | |
| 81 | //- Destructor |
| 82 | virtual ~surfaceRegistry(); |
| 83 | }; |
| 84 | |
| 85 | |
| 86 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // |
no outgoing calls
no test coverage detected