Guest User

Untitled

a guest
Jul 18th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. // @eyny@Force[TW]@
  2. #ifndef _FORCETW20101226B001_H_
  3. #define _FORCETW20101226B001_H_
  4. //
  5. #include <iostream>
  6. #include <string>
  7. #include <vector>
  8. #include <sstream>
  9. using namespace std;
  10. //
  11. typedef vector<string> vStr;
  12. //
  13. class CStrTok
  14. {
  15. public:
  16. string m_str;
  17. char m_token;
  18. vStr m_vstr;
  19. CStrTok(void);
  20. CStrTok(const string str);
  21. ~CStrTok(void);
  22. void setString(const string str);
  23. void Token(void);
  24. void Print(void);
  25. };
  26. //
  27. #endif
Add Comment
Please, Sign In to add comment