File: plasmapassplugin.h

package info (click to toggle)
plasma-pass 1.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 516 kB
  • sloc: cpp: 1,316; xml: 28; makefile: 2; sh: 1
file content (19 lines) | stat: -rw-r--r-- 431 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// SPDX-FileCopyrightText: 2018 Daniel Vrátil <dvratil@kde.org>
//
// SPDX-License-Identifier: LGPL-2.1-or-later

#ifndef PLASMAPASSPLUGIN_H
#define PLASMAPASSPLUGIN_H

#include <QQmlExtensionPlugin>

class PlasmaPassPlugin : public QQmlExtensionPlugin
{
    Q_OBJECT
    Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface")

public:
    void registerTypes(const char *uri) override;
};

#endif // PLASMAPASSPLUGIN_H