Class: Quickfix::StreamDesc
- Inherits:
-
StringField
- Object
- StringField
- Quickfix::StreamDesc
- Defined in:
- lib/quickfix_fields.rb
Instance Method Summary collapse
-
#initialize(data = nil) ⇒ StreamDesc
constructor
A new instance of StreamDesc.
Constructor Details
#initialize(data = nil) ⇒ StreamDesc
Returns a new instance of StreamDesc.
27969 27970 27971 27972 27973 27974 27975 |
# File 'lib/quickfix_fields.rb', line 27969 def initialize(data = nil) if( data == nil ) super(40051) else super(40051, data) end end |