Krita Source Code Documentation
Loading...
Searching...
No Matches
Plugin.h
Go to the documentation of this file.
1/* This file is part of the KDE project
2 * SPDX-FileCopyrightText: 2007 Thomas Zander <zander@kde.org>
3 *
4 * SPDX-License-Identifier: LGPL-2.0-or-later
5 */
6#ifndef PLUGIN_H
7#define PLUGIN_H
8
9#include <QObject>
10#include <QVariantList>
11
12class Plugin : public QObject
13{
14 Q_OBJECT
15
16public:
17 Plugin(QObject *parent, const QVariantList &);
18 ~Plugin() override {}
19};
20
21#endif
~Plugin() override
Definition Plugin.h:18
Plugin(QObject *parent, const QVariantList &)
Definition Plugin.cpp:16