2016-03-11 14:49:24 +00:00
|
|
|
#ifndef CMDS_H
|
|
|
|
#define CMDS_H
|
2016-03-13 16:16:34 +00:00
|
|
|
#include "commandexecutor.h"
|
2016-03-11 14:49:24 +00:00
|
|
|
#include <iostream>
|
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
#include <unistd.h>
|
|
|
|
using std::string;
|
|
|
|
using std::vector;
|
|
|
|
|
|
|
|
namespace Cmds {
|
2016-03-13 16:16:34 +00:00
|
|
|
int cdExecute(const vector<string>* args, CommandExecutor*);
|
|
|
|
int exitExecute(const vector<string>*, CommandExecutor*);
|
|
|
|
int helpExecute(const vector<string>*, CommandExecutor*);
|
2016-03-11 14:49:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // CMDS_H
|