| 123456789101112131415 | #ifndef COMMANDUTILS_H#define COMMANDUTILS_H#include <string>#include <vector>using namespace std;namespace CommandUtils{    bool splitString(const string& rawCommand, string& command, vector<string>& args);    static bool splitStringIntern(const string& rawCommand, string& command, vector<string>& args);}#endif
 |