Class: Quickfix::BenchmarkCurvePoint

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

Instance Method Summary collapse

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