Class: Quickfix::Factor

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ Factor

Returns a new instance of Factor.



13175
13176
13177
13178
13179
13180
13181
# File 'lib/quickfix_fields.rb', line 13175

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

Class Method Details

.fieldObject



13172
13173
13174
# File 'lib/quickfix_fields.rb', line 13172

def Factor.field
	return 228
end