1 #ifndef __CommandList_h__ 2 #define __CommandList_h__ 38 void add(
Command &command, std::string name =
"");
42 bool processRequest(std::string request,
Session *session, std::stringstream &data);
47 std::vector<Command *> commands;
CommandList()
Definition: CommandList.cpp:5
Definition: Command.cpp:4
~CommandList()
Definition: CommandList.cpp:7
int processCommand(std::string request, Session *session, std::stringstream &data) override
Definition: CommandList.cpp:28
Definition: CommandList.h:18
void add(Command &command, std::string name="")
Definition: CommandList.cpp:9