Method: WorkflowJSON_Shim#seedFile
- Defined in:
- lib/openstudio/workflow_json.rb
#seedFile ⇒ Object
Returns the seed file path. Evaluated relative to filePaths if not absolute. boost::optional<openstudio::path> seedFile() const;
385 386 387 388 389 390 391 |
# File 'lib/openstudio/workflow_json.rb', line 385 def seedFile result = OpenStudio::OptionalPath.new if @workflow[:seed_file] result = OpenStudio::OptionalPath.new(OpenStudio.toPath(@workflow[:seed_file])) end result end |