1/*
2 SPDX-FileCopyrightText: 2014 Antonis Tsiapaliokas <antonis.tsiapaliokas@kde.org>
3
4 SPDX-License-Identifier: LGPL-2.0-or-later
5*/
6
7#ifndef BALOOPLUGIN_H
8#define BALOOPLUGIN_H
9
10#include <QQmlEngine>
11#include <QQmlExtensionPlugin>
12
13class BalooPlugin : public QQmlExtensionPlugin
14{
15 Q_OBJECT
16 Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface")
17
18public:
19 void initializeEngine(QQmlEngine *engine, const char *uri) override;
20 void registerTypes(const char *uri) override;
21};
22
23#endif
24

source code of baloo/src/qml/balooplugin.h