Class: Quickfix::SymbolSfx

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SymbolSfx

Returns a new instance of SymbolSfx.



3737
3738
3739
3740
3741
3742
3743
# File 'lib/quickfix_fields.rb', line 3737

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

Class Method Details

.fieldObject



3734
3735
3736
# File 'lib/quickfix_fields.rb', line 3734

def SymbolSfx.field
  return 65
end