#ifndef CMDS_H #define CMDS_H #include "commandexecutor.h" #include #include #include #include using std::string; using std::vector; namespace Cmds { int cdExecute(const vector* args, CommandExecutor*); int exitExecute(const vector*, CommandExecutor*); int helpExecute(const vector*, CommandExecutor*); } #endif // CMDS_H