| 69 | return _config.getMapValue(key).toFloat(); |
| 70 | } |
| 71 | int32_t getInt(const StringBox& key, int32_t) override { |
| 72 | return _config.getMapValue(key).toInt(); |
| 73 | } |
| 74 | Value getBinary(const StringBox& key, const Value&) override { |
| 75 | return _config.getMapValue(key); |
| 76 | } |
nothing calls this directly
no test coverage detected