Class: Quickfix::DerivativeInstrRegistry

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ DerivativeInstrRegistry

Returns a new instance of DerivativeInstrRegistry.



16698
16699
16700
16701
16702
16703
16704
# File 'lib/quickfix_fields.rb', line 16698

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