Class: Quickfix::RelativeValueType

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

Returns a new instance of RelativeValueType.



61886
61887
61888
61889
61890
61891
61892
# File 'lib/quickfix_fields.rb', line 61886

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

Class Method Details

.fieldObject



61883
61884
61885
# File 'lib/quickfix_fields.rb', line 61883

def RelativeValueType.field
  return 2530
end