diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | ce4a32fe52ef09d8f5ff1dd22c001110902b60a2 (patch) | |
tree | 5ac38a06f3dde268dc7927dc155896926aaf7012 /kio/tests/kdirwatchtest.h | |
download | tdelibs-ce4a32fe52ef09d8f5ff1dd22c001110902b60a2.tar.gz tdelibs-ce4a32fe52ef09d8f5ff1dd22c001110902b60a2.zip |
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
Diffstat (limited to 'kio/tests/kdirwatchtest.h')
-rw-r--r-- | kio/tests/kdirwatchtest.h | 33 |
1 files changed, 33 insertions, 0 deletions
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 <sven@lisa.exp.univie.ac.at> + + 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 <stdlib.h> +#include <stdio.h> +#include <qobject.h> + +#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 |