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