File indexing completed on 2025-02-02 05:17:47
0001 /* 0002 * SPDX-FileCopyrightText: 2011-2016 Ivan Cukic <ivan.cukic@kde.org> 0003 * 0004 * SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL 0005 */ 0006 0007 #pragma once 0008 0009 #include "../Database.h" 0010 #include <QStringList> 0011 0012 namespace Common 0013 { 0014 namespace ResourcesDatabaseSchema 0015 { 0016 QString version(); 0017 0018 QStringList schema(); 0019 0020 QString path(); 0021 void overridePath(const QString &path); 0022 0023 void initSchema(Database &database); 0024 0025 } // namespace ResourcesDatabase 0026 } // namespace Common