summaryrefslogtreecommitdiff
path: root/noncore/unsupported/gsmtool/main.cpp
authordwmw2 <dwmw2>2002-04-02 00:02:59 (UTC)
committer dwmw2 <dwmw2>2002-04-02 00:02:59 (UTC)
commit2314955ff0127a570e25e7e7a10ce4d17a2de0e2 (patch) (unidiff)
treec19c960b4efa48c2238fefe743a28de418d382da /noncore/unsupported/gsmtool/main.cpp
parentdd9e49cca8cd9a32a52edfc6b6a0683579612a75 (diff)
downloadopie-2314955ff0127a570e25e7e7a10ce4d17a2de0e2.zip
opie-2314955ff0127a570e25e7e7a10ce4d17a2de0e2.tar.gz
opie-2314955ff0127a570e25e7e7a10ce4d17a2de0e2.tar.bz2
Start of GSM app. Still not decided what to do with gsmlib. Needs icon.
Diffstat (limited to 'noncore/unsupported/gsmtool/main.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/unsupported/gsmtool/main.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/noncore/unsupported/gsmtool/main.cpp b/noncore/unsupported/gsmtool/main.cpp
new file mode 100644
index 0000000..8f68713
--- a/dev/null
+++ b/noncore/unsupported/gsmtool/main.cpp
@@ -0,0 +1,12 @@
1#include "gsmtool.h"
2#include <qpe/qpeapplication.h>
3
4int main( int argc, char ** argv )
5{
6 QPEApplication a( argc, argv );
7
8 GSMTool mw;
9 a.showMainWidget( &mw );
10
11 return a.exec();
12}