Class: Quickfix42::BidRequest::NoBidDescriptors

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

Instance Method Summary collapse

Constructor Details

#initializeNoBidDescriptors

Returns a new instance of NoBidDescriptors.



1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
# File 'lib/quickfix42.rb', line 1079

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