Class: Quickfix::UnderlyingConstituentWeight

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingConstituentWeight

Returns a new instance of UnderlyingConstituentWeight.



26032
26033
26034
26035
26036
26037
26038
# File 'lib/quickfix_fields.rb', line 26032

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