| 582 | } |
| 583 | |
| 584 | boost::optional<openstudio::path> WorkflowJSON_Impl::seedModelicaFile() const { |
| 585 | Json::Value defaultValue(""); |
| 586 | Json::Value seed = m_value.get("seed_modelica_file", defaultValue); |
| 587 | std::string result = seed.asString(); |
| 588 | if (result.empty()) { |
| 589 | return boost::none; |
| 590 | } |
| 591 | return toPath(result); |
| 592 | } |
| 593 | |
| 594 | boost::optional<std::string> WorkflowJSON_Impl::seedModelicaModel() const { |
| 595 | Json::Value defaultValue(""); |
no test coverage detected