File indexing completed on 2024-05-05 16:45:14

0001 // SPDX-FileCopyrightText: 2022 Gleb Popov <arrowd@FreeBSD.org>
0002 // SPDX-License-Identifier: BSD-3-Clause
0003 
0004 #ifndef CRAFTPLUGIN_H
0005 #define CRAFTPLUGIN_H
0006 
0007 #include <interfaces/iplugin.h>
0008 
0009 class CraftPlugin : public KDevelop::IPlugin
0010 {
0011     Q_OBJECT
0012 public:
0013     CraftPlugin(QObject* parent, const QVariantList& args);
0014 };
0015 
0016 #endif // CRAFTPLUGIN_H