Class: Quickfix::LinesOfText

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ LinesOfText

Returns a new instance of LinesOfText.



825
826
827
828
829
830
831
# File 'lib/quickfix_fields.rb', line 825

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

Class Method Details

.fieldObject



822
823
824
# File 'lib/quickfix_fields.rb', line 822

def LinesOfText.field
  return 33
end