Class: Quickfix::MsgType
- Inherits:
-
StringField
- Object
- StringField
- Quickfix::MsgType
- Defined in:
- lib/quickfix_fields.rb
Instance Method Summary collapse
-
#initialize(data = nil) ⇒ MsgType
constructor
A new instance of MsgType.
Constructor Details
#initialize(data = nil) ⇒ MsgType
Returns a new instance of MsgType.
84 85 86 87 88 89 90 |
# File 'lib/quickfix_fields.rb', line 84 def initialize(data = nil) if( data == nil ) super(35) else super(35, data) end end |