Class: Quickfix::Symbol
- Inherits:
-
StringField
- Object
- StringField
- Quickfix::Symbol
- Defined in:
- lib/quickfix_fields.rb
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(data = nil) ⇒ Symbol
constructor
A new instance of Symbol.
Constructor Details
#initialize(data = nil) ⇒ Symbol
Returns a new instance of Symbol.
3061 3062 3063 3064 3065 3066 3067 |
# File 'lib/quickfix_fields.rb', line 3061 def initialize(data = nil) if( data == nil ) super(55) else super(55, data) end end |
Class Method Details
.field ⇒ Object
3058 3059 3060 |
# File 'lib/quickfix_fields.rb', line 3058 def Symbol.field return 55 end |