Class: Quickfix::BenchmarkCurvePoint

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

#<, #<=, #==, #>, #>=, #getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ BenchmarkCurvePoint

Returns a new instance of BenchmarkCurvePoint.



5713
5714
5715
5716
5717
5718
5719
# File 'lib/quickfix_fields.rb', line 5713

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

Class Method Details

.fieldObject



5710
5711
5712
# File 'lib/quickfix_fields.rb', line 5710

def BenchmarkCurvePoint.field
	return 222
end