File indexing completed on 2024-05-12 13:04:44

0001 /*
0002  * This file is part of the KDE project
0003  * SPDX-FileCopyrightText: 2013 Shantanu Tushar <shantanu@kde.org>
0004  * SPDX-FileCopyrightText: 2013 Sujith Haridasan <sujith.h@gmail.com>
0005  * SPDX-FileCopyrightText: 2013 Arjen Hiemstra <ahiemstra@heimr.nl>
0006  *
0007  * SPDX-License-Identifier: LGPL-2.0-or-later
0008  */
0009 
0010 #ifndef CALLIGRAQTQUICKCOMPONENTSPLUGIN_H
0011 #define CALLIGRAQTQUICKCOMPONENTSPLUGIN_H
0012 
0013 #include <QDeclarativeExtensionPlugin>
0014 
0015 class CalligraQtQuickComponentsPlugin : public QDeclarativeExtensionPlugin
0016 {
0017     Q_OBJECT
0018     Q_PLUGIN_METADATA(IID "org.calligra.CalligraQtQuickComponentsPlugin")
0019 
0020 public:
0021     void registerTypes(const char *uri);
0022     virtual void initializeEngine(QDeclarativeEngine* engine, const char* uri);
0023 
0024 private:
0025 
0026 };
0027 
0028 #endif // CALLIGRAQTQUICKCOMPONENTSPLUGIN_H