Class: Quickfix::StreamText

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ StreamText

Returns a new instance of StreamText.



28034
28035
28036
28037
28038
28039
28040
# File 'lib/quickfix_fields.rb', line 28034

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