File indexing completed on 2024-05-12 05:29:27

0001 // SPDX-FileCopyrightText: 2019, 2022 Mikhail Zolotukhin <zomial@protonmail.com>
0002 // SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0003 
0004 #pragma once
0005 
0006 #include <QFile>
0007 #include <QString>
0008 
0009 namespace Utils
0010 {
0011 QString configDirPath(int gtkVersion);
0012 QString readFileContents(QFile &file);
0013 
0014 [[maybe_unused]] static inline const auto s_gtkVersions = {3, 4};
0015 }