Class: Quickfix::LegFactor

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DoubleField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ LegFactor

Returns a new instance of LegFactor.



6090
6091
6092
6093
6094
6095
6096
# File 'lib/quickfix_fields.rb', line 6090

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

Class Method Details

.fieldObject



6087
6088
6089
# File 'lib/quickfix_fields.rb', line 6087

def LegFactor.field
  return 253
end