Class: Quickfix::EncodedAllocText

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ EncodedAllocText

Returns a new instance of EncodedAllocText.



4543
4544
4545
4546
4547
4548
4549
# File 'lib/quickfix_fields.rb', line 4543

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