Class: Quickfix::LastQty

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DoubleField

#getValue, #setValue

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

Class Method Details

.fieldObject



5619
5620
5621
# File 'lib/quickfix_fields.rb', line 5619

def LastQty.field
  return 32
end