Class: Quickfix::AllocQty

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ AllocQty

Returns a new instance of AllocQty.



5661
5662
5663
5664
5665
5666
5667
# File 'lib/quickfix_fields.rb', line 5661

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