summaryrefslogtreecommitdiff
path: root/src/cli/cli.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli/cli.h')
-rw-r--r--src/cli/cli.h21
1 files changed, 14 insertions, 7 deletions
diff --git a/src/cli/cli.h b/src/cli/cli.h
index 98ecdd4..360d801 100644
--- a/src/cli/cli.h
+++ b/src/cli/cli.h
@@ -49,22 +49,29 @@ using namespace std;
class cli : public thro
{
+#endif
private:
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 start(void* p_void);
- void start();
+void print_rusage();
+
+#ifndef NCURSES
+
+void start(void* p_void);
+#else
+
+void start();
+#endif
};
#endif