GEOS
3.3.7
|
00001 /********************************************************************** 00002 * $Id: CLocalizer.h 2958 2010-03-29 11:29:40Z mloskot $ 00003 * 00004 * GEOS - Geometry Engine Open Source 00005 * http://geos.refractions.net 00006 * 00007 * Copyright (C) 2008 Sean Gillies 00008 * 00009 * This is free software; you can redistribute and/or modify it under 00010 * the terms of the GNU Lesser General Public Licence as published 00011 * by the Free Software Foundation. 00012 * See the COPYING file for more information. 00013 * 00014 ********************************************************************** 00015 * 00016 * Last port: ORIGINAL WORK 00017 * 00018 **********************************************************************/ 00019 00020 #include <geos/export.h> 00021 00022 #include <string> 00023 00024 #ifdef _MSC_VER 00025 #pragma warning(push) 00026 #pragma warning(disable: 4251) // warning C4251: needs to have dll-interface to be used by clients of class 00027 #endif 00028 00029 namespace geos { 00030 namespace io { 00031 00035 class GEOS_DLL CLocalizer 00036 { 00037 public: 00038 00039 CLocalizer(); 00040 ~CLocalizer(); 00041 00042 private: 00043 00044 std::string saved_locale; 00045 }; 00046 00047 #ifdef _MSC_VER 00048 #pragma warning(pop) 00049 #endif 00050 00051 } // namespace io 00052 } // namespace geos 00053