Class: Quickfix::SymbolSfx
- Inherits:
-
StringField
- Object
- StringField
- Quickfix::SymbolSfx
- Defined in:
- lib/quickfix_fields.rb
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(data = nil) ⇒ SymbolSfx
constructor
A new instance of SymbolSfx.
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
.field ⇒ Object
3734 3735 3736 |
# File 'lib/quickfix_fields.rb', line 3734 def SymbolSfx.field return 65 end |