Class: Quickfix::NumberOfOrders

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NumberOfOrders

Returns a new instance of NumberOfOrders.



4387
4388
4389
4390
4391
4392
4393
# File 'lib/quickfix_fields.rb', line 4387

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