Class: Quickfix::PegSymbol

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

#<, #<=, #==, #>, #>=, #getValue, #setValue

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

Class Method Details

.fieldObject



14667
14668
14669
# File 'lib/quickfix_fields.rb', line 14667

def PegSymbol.field
  return 1098
end