Class: Quickfix::Factor

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

Returns a new instance of Factor.



5778
5779
5780
5781
5782
5783
5784
# File 'lib/quickfix_fields.rb', line 5778

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

Class Method Details

.fieldObject



5775
5776
5777
# File 'lib/quickfix_fields.rb', line 5775

def Factor.field
	return 228
end