Class: Quickfix::NoRoutingIDs

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

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

Class Method Details

.fieldObject



3201
3202
3203
# File 'lib/quickfix_fields.rb', line 3201

def NoRoutingIDs.field
	return 215
end