CommandUtils.h 327 B

123456789101112131415
  1. #ifndef COMMANDUTILS_H
  2. #define COMMANDUTILS_H
  3. #include <string>
  4. #include <vector>
  5. using namespace std;
  6. namespace CommandUtils
  7. {
  8. bool splitString(const string& rawCommand, string& command, vector<string>& args);
  9. static bool splitStringIntern(const string& rawCommand, string& command, vector<string>& args);
  10. }
  11. #endif