Class: Quickfix::Quantity

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ Quantity

Returns a new instance of Quantity.



5635
5636
5637
5638
5639
5640
5641
# File 'lib/quickfix_fields.rb', line 5635

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