Class: Quickfix::RoutingType

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ RoutingType

Returns a new instance of RoutingType.



1436
1437
1438
1439
1440
1441
1442
# File 'lib/quickfix_fields.rb', line 1436

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

Class Method Details

.fieldObject



1433
1434
1435
# File 'lib/quickfix_fields.rb', line 1433

def RoutingType.field
	return 216
end