-----------------------------------------------------------------------------
| 81 | |
| 82 | //----------------------------------------------------------------------------- |
| 83 | class LinearScaleAlgorithm : public AbstractScaleAlgorithm |
| 84 | { |
| 85 | public: |
| 86 | LinearScaleAlgorithm(double maxRawValue); |
| 87 | |
| 88 | double operator()(double rawValue) const override; |
| 89 | |
| 90 | protected: |
| 91 | double const scale; |
| 92 | }; |
| 93 | |
| 94 | //----------------------------------------------------------------------------- |
| 95 | class LogarithmicScaleAlgorithm : public AbstractScaleAlgorithm |
nothing calls this directly
no outgoing calls
no test coverage detected