Class: Quickfix::CxlQty

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

Returns a new instance of CxlQty.



1787
1788
1789
1790
1791
1792
1793
# File 'lib/quickfix_fields.rb', line 1787

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

Class Method Details

.fieldObject



1784
1785
1786
# File 'lib/quickfix_fields.rb', line 1784

def CxlQty.field
	return 84
end