get the sql file
| 1303 | |
| 1304 | /// get the sql file |
| 1305 | boost::optional<openstudio::SqlFile> Model_Impl::sqlFile() const { |
| 1306 | if (m_sqlFile) { |
| 1307 | return boost::optional<openstudio::SqlFile>(*m_sqlFile); |
| 1308 | } else { |
| 1309 | return {}; |
| 1310 | } |
| 1311 | } |
| 1312 | |
| 1313 | bool Model_Impl::setWorkflowJSON(const openstudio::WorkflowJSON& workflowJSON) { |
| 1314 | m_workflowJSON = workflowJSON; |
no outgoing calls
no test coverage detected