Class: Quickfix::NoLinesOfText

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NoLinesOfText

Returns a new instance of NoLinesOfText.



14943
14944
14945
14946
14947
14948
14949
# File 'lib/quickfix_fields.rb', line 14943

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

Class Method Details

.fieldObject



14940
14941
14942
# File 'lib/quickfix_fields.rb', line 14940

def NoLinesOfText.field
  return 33
end