Class: Quickfix::TransferScope

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

Returns a new instance of TransferScope.



60599
60600
60601
60602
60603
60604
60605
# File 'lib/quickfix_fields.rb', line 60599

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

Class Method Details

.fieldObject



60596
60597
60598
# File 'lib/quickfix_fields.rb', line 60596

def TransferScope.field
	return 2441
end