Class: Quickfix::CumQty

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ CumQty

Returns a new instance of CumQty.



1046
1047
1048
1049
1050
1051
1052
# File 'lib/quickfix_fields.rb', line 1046

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