21 #ifndef GEOS_IO_STRINGTOKENIZER_H
22 #define GEOS_IO_STRINGTOKENIZER_H
24 #include <geos/export.h>
30 #pragma warning(disable: 4251) // warning C4251: needs to have dll-interface to be used by clients of class
36 class GEOS_DLL StringTokenizer {
45 StringTokenizer(
const std::string& txt);
46 ~StringTokenizer() {};
50 std::string getSVal();
52 const std::string &str;
55 std::string::const_iterator iter;
58 StringTokenizer(
const StringTokenizer& other);
59 StringTokenizer& operator=(
const StringTokenizer& rhs);
69 #endif // #ifndef GEOS_IO_STRINGTOKENIZER_H