Class: Quickfix::CalculationMethod

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

Returns a new instance of CalculationMethod.



62705
62706
62707
62708
62709
62710
62711
# File 'lib/quickfix_fields.rb', line 62705

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

Class Method Details

.fieldObject



62702
62703
62704
# File 'lib/quickfix_fields.rb', line 62702

def CalculationMethod.field
  return 2592
end