Krita Source Code Documentation
Loading...
Searching...
No Matches
KisResourceMetaDataModel.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2025 Dmitry Kazakov <dimula73@gmail.com>
3 *
4 * SPDX-License-Identifier: LGPL-2.0-or-later
5 */
6#ifndef KISRESOURCEMETADATAMODEL_H
7#define KISRESOURCEMETADATAMODEL_H
8
9#include <QObject>
10#include <QScopedPointer>
11
12#include "kritaresources_export.h"
13
28class KRITARESOURCES_EXPORT KisResourceMetaDataModel
29{
30public:
31 KisResourceMetaDataModel(const QString &tableName);
33
34 QVariant metaDataValue(int resourceId, const QString &key);
35
36private:
37 struct Private;
38 QScopedPointer<Private> m_d;
39};
40
41#endif // KISRESOURCEMETADATAMODEL_H
QScopedPointer< Private > m_d