Class: Quickfix::LinesOfText
- Inherits:
-
IntField
- Object
- IntField
- Quickfix::LinesOfText
- Defined in:
- lib/quickfix_fields.rb
Instance Method Summary collapse
-
#initialize(data = nil) ⇒ LinesOfText
constructor
A new instance of LinesOfText.
Constructor Details
#initialize(data = nil) ⇒ LinesOfText
Returns a new instance of LinesOfText.
1280 1281 1282 1283 1284 1285 1286 |
# File 'lib/quickfix_fields.rb', line 1280 def initialize(data = nil) if( data == nil ) super(33) else super(33, data) end end |