2013-09-04 11:48:06 +02:00
|
|
|
/*
|
2020-08-13 21:08:54 +02:00
|
|
|
SPDX-FileCopyrightText: 2011 Aaron Seigo <aseigo@kde.org>
|
|
|
|
|
|
|
|
SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
2013-09-04 11:48:06 +02:00
|
|
|
|
|
|
|
#ifndef SIMPLEENGINE_H
|
|
|
|
#define SIMPLEENGINE_H
|
|
|
|
|
|
|
|
#include <Plasma/DataEngine>
|
|
|
|
|
|
|
|
class SimpleEngine : public Plasma::DataEngine
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
SimpleEngine(QObject *parent, const QVariantList &args);
|
|
|
|
|
|
|
|
void init();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|