Class: Quickfix50::BidRequest::NoBidDescriptors

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

Instance Method Summary collapse

Constructor Details

#initializeNoBidDescriptors

Returns a new instance of NoBidDescriptors.



5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
# File 'lib/quickfix50.rb', line 5148

def initialize
	order = Quickfix::IntArray.new(12)
	order[0] = 399
	order[1] = 400
	order[2] = 401
	order[3] = 404
	order[4] = 441
	order[5] = 402
	order[6] = 403
	order[7] = 405
	order[8] = 406
	order[9] = 407
	order[10] = 408
	order[11] = 0
	super(398, 399, order)
end