summaryrefslogtreecommitdiff
path: root/examples/opiecore/onotifytest/main.h
Unidiff
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 @@
1// (C) Michael 'Mickey' Lauer <mickey@Vanille.de>
2// LICENSE = "GPLv2"
3
4#ifndef MAIN_H
5#define MAIN_H
6
7/* QT */
8#include <qapplication.h>
9#include <qpushbutton.h>
10#include <qtextstream.h>
11
12class App : public QApplication
13{
14 Q_OBJECT
15public:
16 App( int argc, char** argv );
17 ~App();
18
19public slots:
20 void triggered( const QString&, unsigned int, const QString& );
21};
22
23#endif