GEOS 3.6.2
CLocalizer.h
1/**********************************************************************
2 *
3 * GEOS - Geometry Engine Open Source
4 * http://geos.osgeo.org
5 *
6 * Copyright (C) 2008 Sean Gillies
7 *
8 * This is free software; you can redistribute and/or modify it under
9 * the terms of the GNU Lesser General Public Licence as published
10 * by the Free Software Foundation.
11 * See the COPYING file for more information.
12 *
13 **********************************************************************
14 *
15 * Last port: ORIGINAL WORK
16 *
17 **********************************************************************/
18
19#ifndef GEOS_IO_CLOCALIZER_H
20#define GEOS_IO_CLOCALIZER_H
21
22#include <geos/export.h>
23
24#include <string>
25
26#ifdef _MSC_VER
27#pragma warning(push)
28#pragma warning(disable: 4251) // warning C4251: needs to have dll-interface to be used by clients of class
29#endif
30
31namespace geos {
32namespace io {
33
37class GEOS_DLL CLocalizer
38{
39public:
40
41 CLocalizer();
42 ~CLocalizer();
43
44private:
45
46 std::string saved_locale;
47};
48
49#ifdef _MSC_VER
50#pragma warning(pop)
51#endif
52
53} // namespace io
54} // namespace geos
55
56#endif // GEOS_IO_CLOCALIZER_H
Contains the interfaces for converting JTS objects to and from other formats.
Definition Geometry.h:56
Basic namespace for all GEOS functionalities.
Definition IndexedNestedRingTester.h:25