summaryrefslogtreecommitdiff
path: root/noncore/unsupported/qashmoney/main.cpp
Unidiff
Diffstat (limited to 'noncore/unsupported/qashmoney/main.cpp') (more/less context) (ignore whitespace changes)
-rwxr-xr-xnoncore/unsupported/qashmoney/main.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/noncore/unsupported/qashmoney/main.cpp b/noncore/unsupported/qashmoney/main.cpp
new file mode 100755
index 0000000..f86be89
--- a/dev/null
+++ b/noncore/unsupported/qashmoney/main.cpp
@@ -0,0 +1,13 @@
1#include <qpe/qpeapplication.h>
2#include "qashmoney.h"
3
4int main( int argc, char **argv )
5 {
6 QPEApplication a ( argc, argv );
7 QashMoney qashmoney;
8 a.showMainWidget ( &qashmoney );
9 return a.exec();
10 }
11
12
13