Class: Quickfix::UnderlyingSymbol

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingSymbol

Returns a new instance of UnderlyingSymbol.



3932
3933
3934
3935
3936
3937
3938
# File 'lib/quickfix_fields.rb', line 3932

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