Class: Quickfix::EncodedUnderlyingStreamText

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ EncodedUnderlyingStreamText

Returns a new instance of EncodedUnderlyingStreamText.



40111
40112
40113
40114
40115
40116
40117
# File 'lib/quickfix_fields.rb', line 40111

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