| 46 | \*---------------------------------------------------------------------------*/ |
| 47 | |
| 48 | class fvSolution |
| 49 | : |
| 50 | public solution |
| 51 | { |
| 52 | // Private Member Functions |
| 53 | |
| 54 | //- Disallow default bitwise copy construct and assignment |
| 55 | fvSolution(const fvSolution&); |
| 56 | void operator=(const fvSolution&); |
| 57 | |
| 58 | |
| 59 | public: |
| 60 | |
| 61 | // Constructors |
| 62 | |
| 63 | //- Construct for objectRegistry |
| 64 | fvSolution(const objectRegistry& obr) |
| 65 | : |
| 66 | solution(obr, "fvSolution") |
| 67 | {} |
| 68 | }; |
| 69 | |
| 70 | |
| 71 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // |