Class: Quickfix::AllocHandlInst

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ AllocHandlInst

Returns a new instance of AllocHandlInst.



3126
3127
3128
3129
3130
3131
3132
# File 'lib/quickfix_fields.rb', line 3126

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