File indexing completed on 2024-11-24 05:00:12
0001 /* 0002 SPDX-FileCopyrightText: 2011, 2012, 2013, 2014, 2015 Ivan Cukic <ivan.cukic(at)kde.org> 0003 0004 SPDX-License-Identifier: GPL-2.0-or-later 0005 */ 0006 0007 #ifndef RESOURCESDATABASESCHEMA_H 0008 #define RESOURCESDATABASESCHEMA_H 0009 0010 #include "../Database.h" 0011 #include <QStringList> 0012 0013 namespace Common 0014 { 0015 namespace ResourcesDatabaseSchema 0016 { 0017 QLatin1String version(); 0018 0019 QStringList schema(); 0020 0021 QString path(); 0022 void overridePath(const QString &path); 0023 0024 void initSchema(Database &database); 0025 0026 } // namespace ResourcesDatabase 0027 } // namespace Common 0028 0029 #endif // RESOURCESDATABASESCHEMA_H