00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef GEOS_IO_CLOCALIZER_H
00021 #define GEOS_IO_CLOCALIZER_H
00022
00023 #include <geos/export.h>
00024
00025 #include <string>
00026
00027 #ifdef _MSC_VER
00028 #pragma warning(push)
00029 #pragma warning(disable: 4251) // warning C4251: needs to have dll-interface to be used by clients of class
00030 #endif
00031
00032 namespace geos {
00033 namespace io {
00034
00038 class GEOS_DLL CLocalizer
00039 {
00040 public:
00041
00042 CLocalizer();
00043 ~CLocalizer();
00044
00045 private:
00046
00047 std::string saved_locale;
00048 };
00049
00050 #ifdef _MSC_VER
00051 #pragma warning(pop)
00052 #endif
00053
00054 }
00055 }
00056
00057 #endif // GEOS_IO_CLOCALIZER_H