Class: Quickfix::EncodedEventTextLen

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ EncodedEventTextLen

Returns a new instance of EncodedEventTextLen.



25044
25045
25046
25047
25048
25049
25050
# File 'lib/quickfix_fields.rb', line 25044

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