Constructor. ! The constructor is copying the medium name, library name and substance name to the locally defined variables. @param mediumName Arbitrary medium name @param libraryName Name of the external fluid property library @param substanceName Substance name */
| 11 | @param substanceName Substance name |
| 12 | */ |
| 13 | BaseSolver::BaseSolver(const std::string& mediumName, const std::string& libraryName, const std::string& substanceName) |
| 14 | : mediumName(mediumName), libraryName(libraryName), substanceName(substanceName) {} |
| 15 | |
| 16 | //! Destructor |
| 17 | /*! |
nothing calls this directly
no outgoing calls
no test coverage detected