Class: Quickfix::AvgPrxPrecision

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ AvgPrxPrecision

Returns a new instance of AvgPrxPrecision.



1657
1658
1659
1660
1661
1662
1663
# File 'lib/quickfix_fields.rb', line 1657

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