Class: Quickfix::Quantity

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

Returns a new instance of Quantity.



5635
5636
5637
5638
5639
5640
5641
# File 'lib/quickfix_fields.rb', line 5635

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

Class Method Details

.fieldObject



5632
5633
5634
# File 'lib/quickfix_fields.rb', line 5632

def Quantity.field
	return 53
end