Class: Quickfix::MinQty

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

Class Method Details

.fieldObject



1992
1993
1994
# File 'lib/quickfix_fields.rb', line 1992

def MinQty.field
	return 110
end