Class: Quickfix::PegSymbol

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PegSymbol

Returns a new instance of PegSymbol.



14670
14671
14672
14673
14674
14675
14676
# File 'lib/quickfix_fields.rb', line 14670

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