| 25 | } |
| 26 | |
| 27 | float getFloat(const StringBox& key, float fallback) override { |
| 28 | return config.getMapValue(key).toFloat(); |
| 29 | } |
| 30 | |
| 31 | int32_t getInt(const StringBox& key, int32_t fallback) override { |
| 32 | return config.getMapValue(key).toInt(); |
nothing calls this directly
no test coverage detected