Class: Quickfix::MinQty

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ MinQty

Returns a new instance of MinQty.



1995
1996
1997
1998
1999
2000
2001
# File 'lib/quickfix_fields.rb', line 1995

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