Class: Quickfix::LastQty
- Inherits:
-
DoubleField
- Object
- DoubleField
- Quickfix::LastQty
- Defined in:
- lib/quickfix_fields.rb
Instance Method Summary collapse
-
#initialize(data = nil) ⇒ LastQty
constructor
A new instance of LastQty.
Constructor Details
#initialize(data = nil) ⇒ LastQty
Returns a new instance of LastQty.
5622 5623 5624 5625 5626 5627 5628 |
# File 'lib/quickfix_fields.rb', line 5622 def initialize(data = nil) if( data == nil ) super(32) else super(32, data) end end |