Class: Quickfix::LegSymbol

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ LegSymbol

Returns a new instance of LegSymbol.



8157
8158
8159
8160
8161
8162
8163
# File 'lib/quickfix_fields.rb', line 8157

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