Class: Quickfix::RatioQty

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ RatioQty

Returns a new instance of RatioQty.



4036
4037
4038
4039
4040
4041
4042
# File 'lib/quickfix_fields.rb', line 4036

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