CommandUtils.h 225 B

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