Method: Quickfix::MsgType#initialize
- Defined in:
- lib/quickfix_fields.rb
#initialize(data = nil) ⇒ MsgType
Returns a new instance of MsgType.
4621 4622 4623 4624 4625 4626 4627 |
# File 'lib/quickfix_fields.rb', line 4621 def initialize(data = nil) if( data == nil ) super(35) else super(35, data) end end |