Sha256: b93740a7af026dfbb185b8639f9440ac7e1f7dee69fbea897ea9b4afe78f671c
Contents?: true
Size: 386 Bytes
Versions: 17
Compression:
Stored size: 386 Bytes
Contents
# This abstract class holds methods that many versions of ASHRAE 90.1 share. # If a method in this class is redefined by a subclass, # the implementation in the subclass is used. # @abstract class ASHRAE901 < Standard def initialize load_standards_database end def load_standards_database(data_directories = []) super([__dir__] + data_directories) end end
Version data entries
17 entries across 17 versions & 1 rubygems