#ifndef COMMANDUTILS_H #define COMMANDUTILS_H #include #include namespace CommandUtils { bool splitString(const std::string& rawCommand, std::string& command, std::vector& args); } #endif