File indexing completed on 2024-06-16 04:17:15

0001 /*
0002  * This file is part of Krita
0003  *
0004  * SPDX-FileCopyrightText: 2021 L. E. Segovia <amy@amyspark.me>
0005  *
0006  * SPDX-License-Identifier: GPL-2.0-or-later
0007  */
0008 
0009 #ifndef _KIS_IPTC_PLUGIN_H_
0010 #define _KIS_IPTC_PLUGIN_H_
0011 
0012 #include <QObject>
0013 
0014 class KisIptcPlugin : public QObject
0015 {
0016 public:
0017     KisIptcPlugin(QObject *parent, const QVariantList &);
0018     ~KisIptcPlugin() override;
0019 };
0020 
0021 #endif // _KIS_IPTC_PLUGIN_H_