Class: Quickfix::UnderlyingStreamText

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingStreamText

Returns a new instance of UnderlyingStreamText.



34404
34405
34406
34407
34408
34409
34410
# File 'lib/quickfix_fields.rb', line 34404

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