Class: Quickfix::LegFactor

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

Instance Method Summary collapse

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