Class: Quickfix::UnderlyingSymbolSfx

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingSymbolSfx

Returns a new instance of UnderlyingSymbolSfx.



3945
3946
3947
3948
3949
3950
3951
# File 'lib/quickfix_fields.rb', line 3945

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