Class: Quickfix::RelativeValue

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DoubleField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ RelativeValue

Returns a new instance of RelativeValue.



61899
61900
61901
61902
61903
61904
61905
# File 'lib/quickfix_fields.rb', line 61899

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

Class Method Details

.fieldObject



61896
61897
61898
# File 'lib/quickfix_fields.rb', line 61896

def RelativeValue.field
	return 2531
end