00001 /********************************************************************** 00002 * $Id: CLocalizer.h 2579 2009-06-15 14:03:52Z strk $ 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 namespace geos { 00025 namespace io { 00026 00030 class GEOS_DLL CLocalizer 00031 { 00032 public: 00033 00034 CLocalizer(); 00035 ~CLocalizer(); 00036 00037 private: 00038 00039 std::string saved_locale; 00040 }; 00041 00042 } // namespace io 00043 } // namespace geos 00044