Class: Quickfix::NoRoutingIDs

Inherits:
IntField
  • Object
show all
Defined in:
lib/quickfix_fields.rb

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NoRoutingIDs

Returns a new instance of NoRoutingIDs.



3204
3205
3206
3207
3208
3209
3210
# File 'lib/quickfix_fields.rb', line 3204

def initialize(data = nil)
  if( data == nil )
    super(215)
  else
    super(215, data)
  end
end