Class: Quickfix40::ListStatus::NoOrders

Inherits:
Quickfix::Group
  • Object
show all
Defined in:
lib/quickfix40.rb

Instance Method Summary collapse

Methods inherited from Quickfix::Group

#addGroup, #delim, #field, #getGroup, #hasGroup, #removeGroup, #replaceGroup

Constructor Details

#initializeNoOrders

Returns a new instance of NoOrders.



235
236
237
238
239
240
241
242
243
# File 'lib/quickfix40.rb', line 235

def initialize
  order = Quickfix::IntArray.new(5)
  order[0] = 11
  order[1] = 14
  order[2] = 84
  order[3] = 6
  order[4] = 0
  super(73, 11, order)
end