Class: Quickfix::RelatdSym

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ RelatdSym

Returns a new instance of RelatdSym.



1384
1385
1386
1387
1388
1389
1390
# File 'lib/quickfix_fields.rb', line 1384

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