/* SPDX-FileCopyrightText: 2018 Roman Gilg SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef LIBINPUTSETTINGS_H #define LIBINPUTSETTINGS_H #include struct LibinputSettings { template T load(QString key, T defVal); template void save(QString key, T val); }; #endif // LIBINPUTSETTINGS_H