Class: Quickfix::Factor

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

Instance Method Summary collapse

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