20 #ifndef GEOS_IO_STRINGTOKENIZER_H
21 #define GEOS_IO_STRINGTOKENIZER_H
23 #include <geos/export.h>
29 #pragma warning(disable: 4251) // warning C4251: needs to have dll-interface to be used by clients of class
35 class GEOS_DLL StringTokenizer {
44 StringTokenizer(
const std::string& txt);
49 std::string getSVal();
51 const std::string &str;
54 std::string::const_iterator iter;
57 StringTokenizer(
const StringTokenizer& other);
58 StringTokenizer& operator=(
const StringTokenizer& rhs);
68 #endif // #ifndef GEOS_IO_STRINGTOKENIZER_H