Class: Quickfix::DistribPercentage

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ DistribPercentage

Returns a new instance of DistribPercentage.



13019
13020
13021
13022
13023
13024
13025
# File 'lib/quickfix_fields.rb', line 13019

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

Class Method Details

.fieldObject



13016
13017
13018
# File 'lib/quickfix_fields.rb', line 13016

def DistribPercentage.field
  return 512
end