Class: Quickfix::RefSeqNum
- Inherits:
-
IntField
- Object
- IntField
- Quickfix::RefSeqNum
- Defined in:
- lib/quickfix_fields.rb
Class Method Summary collapse
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.
1345 1346 1347 1348 1349 1350 1351 |
# File 'lib/quickfix_fields.rb', line 1345 def initialize(data = nil) if( data == nil ) super(45) else super(45, data) end end |
Class Method Details
.field ⇒ Object
1342 1343 1344 |
# File 'lib/quickfix_fields.rb', line 1342 def RefSeqNum.field return 45 end |