Class: Quickfix::ContractualMatrixSource

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ContractualMatrixSource

Returns a new instance of ContractualMatrixSource.



27865
27866
27867
27868
27869
27870
27871
# File 'lib/quickfix_fields.rb', line 27865

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