~sharpie/geos/3.3.2

« back to all changes in this revision

Viewing changes to source/headers/geos/io/CLocalizer.h

  • Committer: Bazaar Package Importer
  • Author(s): Fabio Tranchitella
  • Date: 2009-03-27 15:54:54 UTC
  • mfrom: (1.2.1 upstream) (5.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20090327155454-o3u9j86rzrtcp5vl
Tags: 3.1.0-1
* New upstream release.
* This version includes also a missing header inclusion, which caused FTBFS
  on armel. (Closes: #520447)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <string>
 
2
 
 
3
namespace geos {
 
4
namespace io {
 
5
 
 
6
/**
 
7
 * \class CLocalizer io.h geos.h
 
8
 */
 
9
class CLocalizer
 
10
{
 
11
public:
 
12
 
 
13
    CLocalizer();
 
14
    ~CLocalizer();
 
15
 
 
16
private:
 
17
 
 
18
    std::string saved_locale;
 
19
};
 
20
 
 
21
} // namespace io
 
22
} // namespace geos
 
23