Class: Quickfix::AvgPrxPrecision

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) ⇒ 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

Class Method Details

.fieldObject



1654
1655
1656
# File 'lib/quickfix_fields.rb', line 1654

def AvgPrxPrecision.field
  return 74
end