1 /*
2  * Copyright (C) Pedram Pourang (aka Tsu Jan) 2018 <tsujan2000@gmail.com>
3  *
4  * Kvantum is free software: you can redistribute it and/or modify it
5  * under the terms of the GNU General Public License as published by the
6  * Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * Kvantum is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12  * See the GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17 
18 #ifndef KVCOMMAND_H
19 #define KVCOMMAND_H
20 
21 #include <QStringList>
22 
23 namespace KvManager {
24 
25 bool setTheme (const QString& theme);
26 bool assignTheme (const QString& theme, const QStringList& apps);
27 
28 }
29 
30 #endif // KVCOMMAND_H
31