Sha256: 4dafb5c70b946379d9e159ee1dab3b42a0a1e95d48c897d2314759bc7f68b0d5
Contents?: true
Size: 580 Bytes
Versions: 16
Compression:
Stored size: 580 Bytes
Contents
# This abstract class holds methods that many versions of DEER share. # If a method in this class is redefined by a subclass, # the implementation in the subclass is used. # @abstract class DEER < 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