~ubuntu-branches/ubuntu/vivid/muon/vivid-proposed

« back to all changes in this revision

Viewing changes to libmuon/backends/DummyBackend/DummyNotifier.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell, Harald Sitter, Jonathan Riddell
  • Date: 2015-01-15 01:33:55 UTC
  • mfrom: (1.4.31)
  • mto: This revision was merged to the branch mainline in revision 81.
  • Revision ID: package-import@ubuntu.com-20150115013355-3h99wieurdvo6z6q
Tags: 4:5.1.95-0ubuntu1
[ Harald Sitter ]
* New upstream release based on KDE Frameworks 5
* muon-installer is no more remove binary package and all references
* Drop all patches, they all came from upstream anyway
* Remove muon.1 it was wrong and is now outdated
* Fix lintian warnings and ignore all that are bogus or not worth
  fixing

[ Jonathan Riddell ]
* New upstream beta release

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#ifndef DUMMYNOTIFIER_H
21
21
#define DUMMYNOTIFIER_H
22
22
 
23
 
#include <resources/AbstractKDEDModule.h>
24
 
#include <QVariantList>
 
23
#include <BackendNotifierModule.h>
25
24
 
26
 
class DummyNotifier : public AbstractKDEDModule
 
25
class DummyNotifier : public BackendNotifierModule
27
26
{
28
 
    Q_OBJECT
29
 
    Q_CLASSINFO("D-Bus Interface", "org.kde.muon.dummy")
 
27
Q_OBJECT
 
28
Q_PLUGIN_METADATA(IID "org.kde.muon.BackendNotifierModule")
 
29
Q_INTERFACES(BackendNotifierModule)
30
30
public:
31
 
    DummyNotifier(QObject* parent, const QVariantList &);
 
31
    DummyNotifier(QObject* parent = 0);
32
32
    virtual ~DummyNotifier();
33
 
    
34
 
public slots:
35
 
    virtual void recheckSystemUpdateNeeded();
 
33
 
 
34
    virtual bool isSystemUpToDate() const Q_DECL_OVERRIDE;
 
35
    virtual void recheckSystemUpdateNeeded() Q_DECL_OVERRIDE;
 
36
    virtual uint securityUpdatesCount() Q_DECL_OVERRIDE;
 
37
    virtual uint updatesCount() Q_DECL_OVERRIDE;
36
38
};
37
39
 
38
40
#endif