Class: Quickfix::PegSymbol

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PegSymbol

Returns a new instance of PegSymbol.



6753
6754
6755
6756
6757
6758
6759
# File 'lib/quickfix_fields.rb', line 6753

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

Class Method Details

.fieldObject



6750
6751
6752
# File 'lib/quickfix_fields.rb', line 6750

def PegSymbol.field
	return 1098
end