CommandUtils.h 226 B

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