default constructor
| 56 | |
| 57 | // default constructor |
| 58 | Model_Impl::Model_Impl() : Workspace_Impl(StrictnessLevel::Draft, IddFileType::OpenStudio) { |
| 59 | // careful not to call anything that calls shared_from_this here, this is not yet constructed |
| 60 | } |
| 61 | |
| 62 | Model_Impl::Model_Impl(const IdfFile& idfFile) : Workspace_Impl(idfFile, StrictnessLevel(StrictnessLevel::Draft)) { |
| 63 | // careful not to call anything that calls shared_from_this here, this is not yet constructed |
nothing calls this directly
no test coverage detected