CommandUtils.h 228 B

1234567891011121314
  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. }
  10. #endif