GEOS
3.6.1
include
geos
io
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
31
namespace
geos
{
32
namespace
io {
33
37
class
GEOS_DLL CLocalizer
38
{
39
public
:
40
41
CLocalizer();
42
~CLocalizer();
43
44
private
:
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
geos
Basic namespace for all GEOS functionalities.
Definition:
IndexedNestedRingTester.h:25
Generated by
1.8.14