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.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/examples/opiecore/onotifytest/main.h b/examples/opiecore/onotifytest/main.h
new file mode 100644
index 0000000..afad947
--- a/dev/null
+++ b/examples/opiecore/onotifytest/main.h
@@ -0,0 +1,23 @@
+// (C) Michael 'Mickey' Lauer <mickey@Vanille.de>
+// LICENSE = "GPLv2"
+
+#ifndef MAIN_H
+#define MAIN_H
+
+/* QT */
+#include <qapplication.h>
+#include <qpushbutton.h>
+#include <qtextstream.h>
+
+class App : public QApplication
+{
+ Q_OBJECT
+public:
+ App( int argc, char** argv );
+ ~App();
+
+public slots:
+ void triggered( const QString&, unsigned int, const QString& );
+};
+
+#endif