Class: Quickfix::MsgSeqNum
- Inherits:
-
IntField
- Object
- IntField
- Quickfix::MsgSeqNum
- Defined in:
- lib/quickfix_fields.rb
Instance Method Summary collapse
-
#initialize(data = nil) ⇒ MsgSeqNum
constructor
A new instance of MsgSeqNum.
Constructor Details
#initialize(data = nil) ⇒ MsgSeqNum
Returns a new instance of MsgSeqNum.
71 72 73 74 75 76 77 |
# File 'lib/quickfix_fields.rb', line 71 def initialize(data = nil) if( data == nil ) super(34) else super(34, data) end end |