Class: Quickfix::LeavesQty

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ LeavesQty



2372
2373
2374
2375
2376
2377
2378
# File 'lib/quickfix_fields.rb', line 2372

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