1 | /* |
2 | SPDX-FileCopyrightText: 2017 René J.V. Bertin <rjvbertin@gmail.com> |
3 | |
4 | SPDX-License-Identifier: LGPL-2.1-or-later |
5 | */ |
6 | |
7 | #ifndef PHABRICATORPURPOSEQUICKPLUGIN_H |
8 | #define PHABRICATORPURPOSEQUICKPLUGIN_H |
9 | |
10 | #include <QQmlExtensionPlugin> |
11 | |
12 | class PhabricatorPurposeQuickPlugin : public QQmlExtensionPlugin |
13 | { |
14 | Q_OBJECT |
15 | Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface" ) |
16 | |
17 | public: |
18 | void registerTypes(const char *uri) override; |
19 | }; |
20 | |
21 | #endif // PHABRICATORPURPOSEQUICKPLUGIN_H |
22 | |