#include #include #include class vutility { private: vutility() {} public: static std::vector split(std::string str, char delimit); static std::string trim(std::string str); };