File indexing completed on 2024-05-12 13:00:19

0001 /* This file is part of the KDE project
0002  * SPDX-FileCopyrightText: 2005 David Faure <faure@kde.org>
0003  *
0004  * SPDX-License-Identifier: LGPL-2.0-or-later
0005  */
0006 
0007 #ifndef __KARBON_FACTORY_INIT_H__
0008 #define __KARBON_FACTORY_INIT_H__
0009 
0010 #include "ui/KarbonFactory.h"
0011 
0012 class KarbonFactoryInit : public KarbonFactory
0013 {
0014     Q_OBJECT
0015     Q_PLUGIN_METADATA(IID KPluginFactory_iid FILE "karbonpart.json")
0016     Q_INTERFACES(KPluginFactory)
0017 
0018 public:
0019     explicit KarbonFactoryInit() : KarbonFactory() {}
0020     ~KarbonFactoryInit() override {}
0021 };
0022 
0023 #endif