Class: Quickfix::LinesOfText

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

Instance Method Summary collapse

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