Class: Quickfix::ShortQty

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) ⇒ ShortQty

Returns a new instance of ShortQty.



9678
9679
9680
9681
9682
9683
9684
# File 'lib/quickfix_fields.rb', line 9678

def initialize(data = nil)
  if( data == nil )
    super(705)
  else
    super(705, data)
  end
end

Class Method Details

.fieldObject



9675
9676
9677
# File 'lib/quickfix_fields.rb', line 9675

def ShortQty.field
  return 705
end