Class: Quickfix::MsgSeqNum

Inherits:
IntField
  • Object
show all
Defined in:
lib/quickfix_fields.rb

Instance Method Summary collapse

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