Class: Quickfix::AllocText

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ AllocText

Returns a new instance of AllocText.



15463
15464
15465
15466
15467
15468
15469
# File 'lib/quickfix_fields.rb', line 15463

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

Class Method Details

.fieldObject



15460
15461
15462
# File 'lib/quickfix_fields.rb', line 15460

def AllocText.field
	return 161
end