Class: Quickfix::SymbolSfx

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) ⇒ SymbolSfx

Returns a new instance of SymbolSfx.



1540
1541
1542
1543
1544
1545
1546
# File 'lib/quickfix_fields.rb', line 1540

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

Class Method Details

.fieldObject



1537
1538
1539
# File 'lib/quickfix_fields.rb', line 1537

def SymbolSfx.field
  return 65
end