summaryrefslogtreecommitdiff
path: root/noncore/apps/advancedfm/main.cpp
Unidiff
Diffstat (limited to 'noncore/apps/advancedfm/main.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/advancedfm/main.cpp31
1 files changed, 31 insertions, 0 deletions
diff --git a/noncore/apps/advancedfm/main.cpp b/noncore/apps/advancedfm/main.cpp
new file mode 100644
index 0000000..a0401e8
--- a/dev/null
+++ b/noncore/apps/advancedfm/main.cpp
@@ -0,0 +1,31 @@
1
2/***************************************************************************
3 main.cpp - description
4 -------------------
5 begin : March 10, 2002
6 copyright : (C) 2002 by llornkcor
7 email : ljp@llornkcor.com
8 * This program is free software; you can redistribute it and/or modify *
9 * it under the terms of the GNU General Public License as published by *
10 * the Free Software Foundation; either version 2 of the License, or *
11 * (at your option) any later version. *
12 ***************************************************************************/
13#include <qpe/qpeapplication.h>
14#include <qpe/qcopenvelope_qws.h>
15#include <qpe/config.h>
16#include <qstring.h>
17#include <qstringlist.h>
18
19
20
21#include "advancedfm.h"
22
23int main(int argc, char *argv[])
24{
25 QPEApplication a(argc, argv);
26
27 AdvancedFm advencedFm;
28 a.showMainWidget( &advencedFm);
29 return a.exec();
30}
31