summaryrefslogtreecommitdiff
path: root/src/cli/cli.h
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2013-04-06 13:14:44 +0200
committerPaul Buetow <paul@buetow.org>2013-04-06 13:14:44 +0200
commitc8b2ef7b899766d04562f7e04a84251cea8fa701 (patch)
tree52816b17c17e2db0cf89e68537ad1a52392f1510 /src/cli/cli.h
parentca28c0e618890330d429c0dc12429255b20f0c90 (diff)
tagging ychat-0.8.0ychat-0.8.0
Diffstat (limited to 'src/cli/cli.h')
-rwxr-xr-xsrc/cli/cli.h28
1 files changed, 18 insertions, 10 deletions
diff --git a/src/cli/cli.h b/src/cli/cli.h
index cc5a5fc..8ec75cb 100755
--- a/src/cli/cli.h
+++ b/src/cli/cli.h
@@ -22,30 +22,38 @@
#include "../thrd/thro.h"
#endif
+#include "../monitor/dump.h"
+
using namespace std;
-class cli
#ifndef NCURSES
-: public thro
-#endif
+class cli : public thro
+{
+#else
+class cli
{
+#endif
private:
- int parse_input(string s_input);
+ int parse_input(string s_input);
+ vector<string> vectorize(string s_param);
public:
- cli( );
- ~cli( );
+ cli( );
+ ~cli( );
#ifdef DEBUG
- void debug_routine();
+
+ void debug_routine();
#endif
- void print_rusage();
+ void print_rusage();
#ifndef NCURSES
- void start(void* p_void);
+
+ void start(void* p_void);
#else
- void start();
+
+ void start();
#endif
};