summaryrefslogtreecommitdiff
path: root/examples/opiecore/onotifytest/main.h
Side-by-side diff
Diffstat (limited to 'examples/opiecore/onotifytest/main.h') (more/less context) (show whitespace changes)
-rw-r--r--examples/opiecore/onotifytest/main.h6
1 files changed, 6 insertions, 0 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
@@ -1,12 +1,15 @@
// (C) Michael 'Mickey' Lauer <mickey@Vanille.de>
// LICENSE = "GPLv2"
#ifndef MAIN_H
#define MAIN_H
+/* OPIE */
+#include <opie2/ofilenotify.h>
+
/* QT */
#include <qapplication.h>
#include <qpushbutton.h>
#include <qtextstream.h>
class App : public QApplication
@@ -15,9 +18,12 @@ class App : public QApplication
public:
App( int argc, char** argv );
~App();
public slots:
void triggered( const QString&, unsigned int, const QString& );
+
+ private:
+ Opie::Core::ODirNotification* tmpfoo;
};
#endif