Files

14 lines
232 B
C++
Raw Permalink Normal View History

2020-08-21 18:51:18 +05:30
#include <vector>
#include <string>
2020-08-21 19:08:04 +05:30
#include <sstream>
2020-08-21 18:51:18 +05:30
class vutility
{
private:
vutility() {}
public:
static std::vector<std::string> split(std::string str, char delimit);
static std::string trim(std::string str);
};