File indexing completed on 2024-12-22 04:16:02
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_EXIF_PLUGIN_H_ 0010 #define _KIS_EXIF_PLUGIN_H_ 0011 0012 #include <QObject> 0013 0014 class KisExifPlugin : public QObject 0015 { 0016 public: 0017 KisExifPlugin(QObject *parent, const QVariantList &); 0018 ~KisExifPlugin() override; 0019 }; 0020 0021 #endif // _KIS_EXIF_PLUGIN_H_