plasma-framework/examples/dataengines/simpleEngine/simpleEngine.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
350 B
C
Raw Normal View History

2013-09-04 11:48:06 +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