Class: Quickfix40::Allocation::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.



154
155
156
157
158
159
160
161
162
# File 'lib/quickfix40.rb', line 154

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