Class: Quickfix::NoRelativeValues

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) ⇒ NoRelativeValues

Returns a new instance of NoRelativeValues.



61873
61874
61875
61876
61877
61878
61879
# File 'lib/quickfix_fields.rb', line 61873

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

Class Method Details

.fieldObject



61870
61871
61872
# File 'lib/quickfix_fields.rb', line 61870

def NoRelativeValues.field
	return 2529
end