Class: Quickfix::InstrumentRoundingPrecision

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

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

Class Method Details

.fieldObject



42448
42449
42450
# File 'lib/quickfix_fields.rb', line 42448

def InstrumentRoundingPrecision.field
	return 2145
end