summaryrefslogtreecommitdiff
path: root/examples/opiecore/onotifytest/main.h
authormickeyl <mickeyl>2005-05-31 14:34:22 (UTC)
committer mickeyl <mickeyl>2005-05-31 14:34:22 (UTC)
commit89417179ed4d38875dc3edce0f4e184edf13f1f2 (patch) (unidiff)
tree1924e9cf0a053519142554659ca4dd7632938735 /examples/opiecore/onotifytest/main.h
parent6d2273fb22e10474ae26dd249fa2836e100ffdaf (diff)
downloadopie-89417179ed4d38875dc3edce0f4e184edf13f1f2.zip
opie-89417179ed4d38875dc3edce0f4e184edf13f1f2.tar.gz
opie-89417179ed4d38875dc3edce0f4e184edf13f1f2.tar.bz2
catch up with libopie2 improvements
Diffstat (limited to 'examples/opiecore/onotifytest/main.h') (more/less context) (show 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