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