Sha256: b21a08896344b97dd3b30fd32b620bf77b6c7b6fd449eeae3002e8a920ea0f26
Contents?: true
Size: 607 Bytes
Versions: 16
Compression:
Stored size: 607 Bytes
Contents
# This abstract class holds methods that many versions of CBES share. # If a method in this class is redefined by a subclass, # the implementation in the subclass is used. # @abstract # @ref [References::CBES] class CBES < Standard def initialize load_standards_database end # Loads the openstudio standards dataset for this standard. # # @param data_directories [Array<String>] array of file paths that contain standards data # @return [Hash] a hash of standards data def load_standards_database(data_directories = []) super([__dir__] + data_directories) end end
Version data entries
16 entries across 16 versions & 1 rubygems