kde-workspace/kioslave/recentdocuments/recentdocumentsnotifier.h
2014-11-15 04:16:00 +02:00

24 lines
446 B
C++

#ifndef RECENTDOCUMENTNOTIFIER_H
#define RECENTDOCUMENTNOTIFIER_H
#include <KDEDModule>
#include <QtDBus/QtDBus>
class KDirWatch;
class RecentDocumentsNotifier : public KDEDModule
{
Q_OBJECT
Q_CLASSINFO("D-Bus Interface", "org.kde.RecentDocumentsNotifier")
public:
RecentDocumentsNotifier(QObject* parent, const QList<QVariant>&);
private slots:
void dirty(const QString &path);
private:
KDirWatch *dirWatch;
};
#endif