Class: Quickfix44::BidRequest::NoBidDescriptors

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

Instance Method Summary collapse

Constructor Details

#initializeNoBidDescriptors

Returns a new instance of NoBidDescriptors.



4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
# File 'lib/quickfix44.rb', line 4422

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