summaryrefslogtreecommitdiff
path: root/examples/opiecore/onotifytest/main.h
Side-by-side diff
Diffstat (limited to 'examples/opiecore/onotifytest/main.h') (more/less context) (ignore whitespace changes)
-rw-r--r--examples/opiecore/onotifytest/main.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/examples/opiecore/onotifytest/main.h b/examples/opiecore/onotifytest/main.h
index afad947..7ce4b9f 100644
--- a/examples/opiecore/onotifytest/main.h
+++ b/examples/opiecore/onotifytest/main.h
@@ -4,6 +4,9 @@
#ifndef MAIN_H
#define MAIN_H
+/* OPIE */
+#include <opie2/ofilenotify.h>
+
/* QT */
#include <qapplication.h>
#include <qpushbutton.h>
@@ -12,12 +15,15 @@
class App : public QApplication
{
Q_OBJECT
-public:
+ public:
App( int argc, char** argv );
~App();
-public slots:
+ public slots:
void triggered( const QString&, unsigned int, const QString& );
+
+ private:
+ Opie::Core::ODirNotification* tmpfoo;
};
#endif