KPeople

peopleqmlplugin.h
1/*
2 Persons Model
3 SPDX-FileCopyrightText: 2012 Aleix Pol Gonzalez <aleixpol@blue-systems.com>
4
5 SPDX-License-Identifier: LGPL-2.1-or-later
6*/
7
8#ifndef PEOPLEQMLPLUGIN_H
9#define PEOPLEQMLPLUGIN_H
10
11#include <QQmlExtensionPlugin>
12
13class PeopleQMLPlugin : public QQmlExtensionPlugin
14{
16 Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface")
17public:
18 void initializeEngine(QQmlEngine *engine, const char *uri) override;
19 void registerTypes(const char *uri) override;
20};
21
22#endif // PEOPLEQMLPLUGIN_H
Q_OBJECTQ_OBJECT
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:17:45 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.