| 37 | }; |
| 38 | |
| 39 | KeyHandle::KeyHandle( |
| 40 | KeyRegistry& registrar, |
| 41 | std::string_view name, |
| 42 | std::vector<int> const& keyCodes, |
| 43 | bool allowRemap, |
| 44 | std::weak_ptr<mod::Mod> mod |
| 45 | ) |
| 46 | : impl(std::make_unique<Impl>(registrar, name, keyCodes, allowRemap, std::move(mod))) {} |
| 47 | |
| 48 | KeyHandle::~KeyHandle() = default; |
| 49 |
nothing calls this directly
no outgoing calls
no test coverage detected