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