File indexing completed on 2025-01-26 05:06:34

0001 /*
0002     SPDX-FileCopyrightText: 2018 Roman Gilg <subdiff@gmail.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include <QString>
0010 
0011 struct LibinputSettings {
0012     template<class T>
0013     T load(QString key, T defVal);
0014 
0015     template<class T>
0016     void save(QString key, T val);
0017 };