Class: Quickfix::LastQty

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ LastQty

Returns a new instance of LastQty.



5622
5623
5624
5625
5626
5627
5628
# File 'lib/quickfix_fields.rb', line 5622

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