Class: Quickfix::RoutingType

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) ⇒ RoutingType

Returns a new instance of RoutingType.



3217
3218
3219
3220
3221
3222
3223
# File 'lib/quickfix_fields.rb', line 3217

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

Class Method Details

.fieldObject



3214
3215
3216
# File 'lib/quickfix_fields.rb', line 3214

def RoutingType.field
  return 216
end