File indexing completed on 2024-05-26 04:32:42

0001 /* This file is part of the KDE project
0002  * SPDX-FileCopyrightText: 2010 Matus Talcik <matus.talcik@gmail.com>
0003  *
0004  * SPDX-License-Identifier: LGPL-2.0-or-later
0005  */
0006 
0007 #ifndef SNAPSHOT_PLUGIN_H_
0008 #define SNAPSHOT_PLUGIN_H_
0009 
0010 #include <QObject>
0011 #include <QVariant>
0012 
0013 class SnapshotPlugin : public QObject
0014 {
0015     Q_OBJECT
0016 public:
0017     SnapshotPlugin(QObject *parent, const QVariantList &);
0018     ~SnapshotPlugin() override;
0019 };
0020 
0021 #endif