-----------------------------------------------------------------------------
| 106 | |
| 107 | //----------------------------------------------------------------------------- |
| 108 | class ExponentialScaleAlgorithm : public AbstractScaleAlgorithm |
| 109 | { |
| 110 | public: |
| 111 | ExponentialScaleAlgorithm(double maxRawValue, double exponent); |
| 112 | |
| 113 | double operator()(double rawValue) const override; |
| 114 | |
| 115 | protected: |
| 116 | double const scale; |
| 117 | double const exponent; |
| 118 | }; |
| 119 | |
| 120 | //END scale algorithms |
| 121 |
nothing calls this directly
no outgoing calls
no test coverage detected