Class: Quickfix::AllocShares

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

Returns a new instance of AllocShares.



1735
1736
1737
1738
1739
1740
1741
# File 'lib/quickfix_fields.rb', line 1735

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

Class Method Details

.fieldObject



1732
1733
1734
# File 'lib/quickfix_fields.rb', line 1732

def AllocShares.field
  return 80
end