summaryrefslogtreecommitdiff
path: root/noncore/settings/tabmanager/main.cpp
authorllornkcor <llornkcor>2002-05-06 17:45:44 (UTC)
committer llornkcor <llornkcor>2002-05-06 17:45:44 (UTC)
commitd49663597393e1b9e63041964a080069e4b6a664 (patch) (unidiff)
treeba788e8123b5e98d80ab2eea4012f31119968aa8 /noncore/settings/tabmanager/main.cpp
parent4a5885f1dd1328432e3bd3ef7cb2efd9a336b78b (diff)
downloadopie-d49663597393e1b9e63041964a080069e4b6a664.zip
opie-d49663597393e1b9e63041964a080069e4b6a664.tar.gz
opie-d49663597393e1b9e63041964a080069e4b6a664.tar.bz2
initial
Diffstat (limited to 'noncore/settings/tabmanager/main.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/tabmanager/main.cpp40
1 files changed, 40 insertions, 0 deletions
diff --git a/noncore/settings/tabmanager/main.cpp b/noncore/settings/tabmanager/main.cpp
new file mode 100644
index 0000000..a96d768
--- a/dev/null
+++ b/noncore/settings/tabmanager/main.cpp
@@ -0,0 +1,40 @@
1/*
2
3               =. This file is part of the OPIE Project
4             .=l. Copyright (c) 2002 Benjamin Meyer <meyerb@sharpsec.com>
5           .>+-=
6 _;:,     .>    :=|. This library is free software; you can
7.> <`_,   >  .   <= redistribute it and/or modify it under
8:`=1 )Y*s>-.--   : the terms of the GNU Library General Public
9.="- .-=="i,     .._ License as published by the Free Software
10 - .   .-<_>     .<> Foundation; either version 2 of the License,
11     ._= =}       : or (at your option) any later version.
12    .%`+i>       _;_.
13    .i_,=:_.      -<s. This library is distributed in the hope that
14     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY;
15    : ..    .:,     . . . without even the implied warranty of
16    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A
17  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU
18..}^=.=       =       ; Library General Public License for more
19++=   -.     .`     .: details.
20 :     =  ...= . :.=-
21 -.   .:....=;==+<; You should have received a copy of the GNU
22  -_. . .   )=.  = Library General Public License along with
23    --        :-=` this library; see the file COPYING.LIB.
24 If not, write to the Free Software Foundation,
25 Inc., 59 Temple Place - Suite 330,
26 Boston, MA 02111-1307, USA.
27
28*/
29#include "tabmainwindow.h"
30#include <qpe/qpeapplication.h>
31
32int main( int argc, char **argv ){
33 QPEApplication application( argc, argv );
34 TabMainWindow mainWindow;
35 application.showMainWidget(&mainWindow);
36 return application.exec();
37}
38
39//main.cpp
40