-----------------------------------------------------------------------------
| 68 | |
| 69 | //----------------------------------------------------------------------------- |
| 70 | class AbstractScaleAlgorithm |
| 71 | { |
| 72 | public: |
| 73 | AbstractScaleAlgorithm() = default; |
| 74 | virtual ~AbstractScaleAlgorithm() = default; |
| 75 | |
| 76 | AbstractScaleAlgorithm(AbstractScaleAlgorithm const&) = delete; |
| 77 | AbstractScaleAlgorithm& operator=(AbstractScaleAlgorithm const&) = delete; |
| 78 | |
| 79 | virtual double operator()(double rawValue) const = 0; |
| 80 | }; |
| 81 | |
| 82 | //----------------------------------------------------------------------------- |
| 83 | class LinearScaleAlgorithm : public AbstractScaleAlgorithm |
nothing calls this directly
no outgoing calls
no test coverage detected