aboutsummaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2004-05-27 11:55:31 +0000
committerFelix Domke <tmbinc@elitedvb.net>2004-05-27 11:55:31 +0000
commit3a266ea37f7f6a81eab1982071f85a7e51d699e3 (patch)
treefaf3f9c13f9757624960076773f2be228e2cb7e3 /main
parenta250c309ea8a9bd5765201d9d5d083699c31fc80 (diff)
downloadenigma2-3a266ea37f7f6a81eab1982071f85a7e51d699e3.tar.gz
enigma2-3a266ea37f7f6a81eab1982071f85a7e51d699e3.zip
remove cli test stuff (not here!)
Diffstat (limited to 'main')
-rw-r--r--main/enigma.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/main/enigma.cpp b/main/enigma.cpp
index 7b30f6b2..3f77c1ba 100644
--- a/main/enigma.cpp
+++ b/main/enigma.cpp
@@ -16,8 +16,6 @@
#include <lib/service/iservice.h>
#include <lib/nav/core.h>
-#include <main/cli.h>
-
class eMain: public eApplication, public Object
{
eInit init;
@@ -152,20 +150,6 @@ int main()
atexit(object_dump);
#endif
-#if 0
- eCLI cli;
- eString res;
-
- while (1)
- {
- char line[1024];
- if (!fgets(line, 1024, stdin))
- break;
- line[strlen(line)-1]=0;
- int rn = cli.doCommand(res, line);
- eDebug("%s%d", res.c_str(), rn);
- }
-#endif
eMain app;
int res = app.exec();
eDebug("after exec");