QortalOS Brooklyn for Raspberry Pi 4
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

22 lines
565 B

/*
SPDX-FileCopyrightText: 2011-2016 Ivan Cukic <[email protected]>
SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
*/
#ifndef KACTIVITIES_IMPORTS_PLUGIN_H
#define KACTIVITIES_IMPORTS_PLUGIN_H
#include <QQmlExtensionPlugin>
class ActivitiesSettingsPlugin : public QQmlExtensionPlugin
{
Q_OBJECT
Q_PLUGIN_METADATA(IID "org.kde.activities.settings")
public:
ActivitiesSettingsPlugin(QObject *parent = nullptr);
void registerTypes(const char *uri) override;
};
#endif // KACTIVITIES_IMPORTS_PLUGIN_H