Class: Quickfix::StreamText
- Inherits:
-
StringField
- Object
- StringField
- Quickfix::StreamText
- Defined in:
- lib/quickfix_fields.rb
Instance Method Summary collapse
-
#initialize(data = nil) ⇒ StreamText
constructor
A new instance of StreamText.
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 |