Blame view

ios/Runner/Wowgame/Classes/game_food/StringUtils.h 463 Bytes
cb213901   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
  //
  //  StringUtils.h
  //  SteveMaggieCpp
  //
  //  Created by Katarzyna Kalinowska-Górska on 02.06.2017.
  //
  //
  
  #ifndef StringUtils_h
  #define StringUtils_h
  
  #include <string>
  #include <vector>
  
  class StringUtils
  {
      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 /* StringUtils_h */