#ifndef RANDOMNUMBERENGINE_H #define RANDOMNUMBERENGINE_H #include class RandomNumberEngine : public Plasma::DataEngine { Q_OBJECT public: RandomNumberEngine( QObject *parent, const QVariantList &args ); QStringList sources() const; protected: bool sourceRequestEvent( const QString &name ); bool updateSourceEvent( const QString &name ); }; #endif // RANDOMNUMBERENGINE_H