Class: Quickfix::InstrRegistry

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ InstrRegistry

Returns a new instance of InstrRegistry.



7442
7443
7444
7445
7446
7447
7448
# File 'lib/quickfix_fields.rb', line 7442

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