Class: Quickfix42::ListStatus::NoOrders

Inherits:
Quickfix::Group
  • Object
show all
Defined in:
lib/quickfix42.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.



514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
# File 'lib/quickfix42.rb', line 514

def initialize
	order = Quickfix::IntArray.new(11)
	order[0] = 11
	order[1] = 14
	order[2] = 39
	order[3] = 151
	order[4] = 84
	order[5] = 6
	order[6] = 103
	order[7] = 58
	order[8] = 354
	order[9] = 355
	order[10] = 0
	super(73, 11, order)
end