Class: Quickfix::AllocType

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

Returns a new instance of AllocType.



8495
8496
8497
8498
8499
8500
8501
# File 'lib/quickfix_fields.rb', line 8495

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

Class Method Details

.fieldObject



8492
8493
8494
# File 'lib/quickfix_fields.rb', line 8492

def AllocType.field
	return 626
end