Class: Quickfix::Quantity

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ Quantity



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

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

Class Method Details

.fieldObject



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

def Quantity.field
  return 53
end