File indexing completed on 2024-05-05 16:16:34

0001 /*
0002     Persons Model
0003     SPDX-FileCopyrightText: 2012 Aleix Pol Gonzalez <aleixpol@blue-systems.com>
0004 
0005     SPDX-License-Identifier: LGPL-2.1-or-later
0006 */
0007 
0008 #ifndef PEOPLEQMLPLUGIN_H
0009 #define PEOPLEQMLPLUGIN_H
0010 
0011 #include <QQmlExtensionPlugin>
0012 
0013 class PeopleQMLPlugin : public QQmlExtensionPlugin
0014 {
0015     Q_OBJECT
0016     Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface")
0017 public:
0018     void initializeEngine(QQmlEngine *engine, const char *uri) override;
0019     void registerTypes(const char *uri) override;
0020 };
0021 
0022 #endif // PEOPLEQMLPLUGIN_H