Class: Quickfix::NoLinesOfText

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ NoLinesOfText

Returns a new instance of NoLinesOfText.



8885
8886
8887
8888
8889
8890
8891
# File 'lib/quickfix_fields.rb', line 8885

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

Class Method Details

.fieldObject



8882
8883
8884
# File 'lib/quickfix_fields.rb', line 8882

def NoLinesOfText.field
	return 33
end