From ce4a32fe52ef09d8f5ff1dd22c001110902b60a2 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kio/tests/kdirwatchtest.h | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 kio/tests/kdirwatchtest.h (limited to 'kio/tests/kdirwatchtest.h') diff --git a/kio/tests/kdirwatchtest.h b/kio/tests/kdirwatchtest.h new file mode 100644 index 000000000..9330f941c --- /dev/null +++ b/kio/tests/kdirwatchtest.h @@ -0,0 +1,33 @@ + /* + This file is or will be part of KDE desktop environment + + Copyright 1998 Sven Radej + + It is licensed under GPL version 2. + + If it is part of KDE libraries than this file is licensed under + LGPL version 2. + */ + +#ifndef _KDIRWATCHTEST_H_ +#define _KDIRWATCHTEST_H_ + +#include +#include +#include + +#include "kdirwatch.h" +#include "kapplication.h" + +class myTest : public QObject +{ + Q_OBJECT +public: + myTest() { }; +public slots: + void dirty(const QString &a) { printf("Dirty: %s\n", a.ascii()); }; + void created(const QString& f) { printf("Created: %s\n", f.ascii()); } + void deleted(const QString& f) { printf("Deleted: %s\n", f.ascii()); } +}; + +#endif -- cgit v1.2.1