~ubuntu-branches/ubuntu/quantal/kde-runtime/quantal

« back to all changes in this revision

Viewing changes to kioslave/recentdocuments/recentdocumentsnotifier.h

  • Committer: Package Import Robot
  • Author(s): Philip Muškovac
  • Date: 2012-06-03 21:50:00 UTC
  • mto: This revision was merged to the branch mainline in revision 21.
  • Revision ID: package-import@ubuntu.com-20120603215000-vn7oarsq0ynrydj5
Tags: upstream-4.8.80
Import upstream version 4.8.80

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef RECENTDOCUMENTNOTIFIER_H
 
2
#define RECENTDOCUMENTNOTIFIER_H
 
3
 
 
4
#include <KDEDModule>
 
5
#include <QtDBus/QtDBus>
 
6
 
 
7
class KDirWatch;
 
8
 
 
9
class RecentDocumentsNotifier : public KDEDModule
 
10
{
 
11
    Q_OBJECT
 
12
    Q_CLASSINFO("D-Bus Interface", "org.kde.RecentDocumentsNotifier")
 
13
 
 
14
public:
 
15
    RecentDocumentsNotifier(QObject* parent, const QList<QVariant>&);
 
16
 
 
17
private slots:
 
18
    void dirty(const QString &path);
 
19
 
 
20
private:
 
21
    KDirWatch *dirWatch;
 
22
};
 
23
 
 
24
#endif