Class: Quickfix::ListID
- Inherits:
-
StringField
- Object
- StringField
- Quickfix::ListID
- Defined in:
- lib/quickfix_fields.rb
Instance Method Summary collapse
-
#initialize(data = nil) ⇒ ListID
constructor
A new instance of ListID.
Constructor Details
#initialize(data = nil) ⇒ ListID
Returns a new instance of ListID.
1553 1554 1555 1556 1557 1558 1559 |
# File 'lib/quickfix_fields.rb', line 1553 def initialize(data = nil) if( data == nil ) super(66) else super(66, data) end end |