Class: Quickfix::RefSeqNum
- Inherits:
-
IntField
- Object
- IntField
- Quickfix::RefSeqNum
- Defined in:
- lib/quickfix_fields.rb
Instance Method Summary collapse
-
#initialize(data = nil) ⇒ RefSeqNum
constructor
A new instance of RefSeqNum.
Constructor Details
#initialize(data = nil) ⇒ RefSeqNum
Returns a new instance of RefSeqNum.
123 124 125 126 127 128 129 |
# File 'lib/quickfix_fields.rb', line 123 def initialize(data = nil) if( data == nil ) super(45) else super(45, data) end end |