5daad4bc
xiaoyu
游戏源码添加编译(现存问题:游戏内...
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
//
// HStringUtils.h
// SteveMaggieCpp
//
// Created by Katarzyna Kalinowska-Górska on 02.06.2017.
//
//
#ifndef HStringUtils_h
#define HStringUtils_h
#include <string>
#include <vector>
class HStringUtils
{
public:
static std::vector<std::string> splitString(const std::string& string, char separator);
static std::vector<std::string> splitString(const std::string& string, std::string separator);
};
#endif /* HStringUtils_h */
|