File: smb4kqmlplugin.h

package info (click to toggle)
smb4k 4.0.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 19,328 kB
  • sloc: cpp: 19,304; xml: 967; makefile: 7; sh: 5
file content (24 lines) | stat: -rw-r--r-- 521 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
20
21
22
23
24
/*
    smb4kqmlplugin - The QML plugin for use with Plasma/QtQuick

    SPDX-FileCopyrightText: 2012-2023 Alexander Reinholdt <alexander.reinholdt@kdemail.net>
    SPDX-License-Identifier: GPL-2.0-or-later
*/

#ifndef SMB4KQMLPLUGIN_H
#define SMB4KQMLPLUGIN_H

// Qt includes
#include <QQmlExtensionPlugin>
#include <QtPlugin>

class Smb4KQMLPlugin : public QQmlExtensionPlugin
{
    Q_OBJECT
    Q_PLUGIN_METADATA(IID "org.kde.smb4k.smb4kqmlplugin")

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

#endif