Class: Quickfix::InstrumentRoundingPrecision

Inherits:
IntField
  • Object
show all
Defined in:
lib/quickfix_fields.rb

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ InstrumentRoundingPrecision

Returns a new instance of InstrumentRoundingPrecision.



42451
42452
42453
42454
42455
42456
42457
# File 'lib/quickfix_fields.rb', line 42451

def initialize(data = nil)
	if( data == nil )
		super(2145)
	else
		super(2145, data)
	end
end