Class: Quickfix::RelatedSymbol

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ RelatedSymbol

Returns a new instance of RelatedSymbol.



20286
20287
20288
20289
20290
20291
20292
# File 'lib/quickfix_fields.rb', line 20286

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