| 10 | namespace Valdi { |
| 11 | |
| 12 | inline static PercentValue getValue(double value, bool isPercent) { |
| 13 | return PercentValue(value, isPercent); |
| 14 | } |
| 15 | |
| 16 | inline static void setValue(PercentValue value, double& outValue, bool& outPercent) { |
| 17 | outValue = value.value; |
no test coverage detected