rename to reflect 'generator' bit
This commit is contained in:
parent
67180bcc64
commit
495d3eac40
2 changed files with 6 additions and 9 deletions
|
@ -22,8 +22,8 @@
|
||||||
|
|
||||||
//$Id$
|
//$Id$
|
||||||
|
|
||||||
#ifndef MAPNIK_GEOMETRY_TO_SVG_HPP
|
#ifndef MAPNIK_GEOMETRY_SVG_GENERATOR_HPP
|
||||||
#define MAPNIK_GEOMETRY_TO_SVG_HPP
|
#define MAPNIK_GEOMETRY_SVG_GENERATOR_HPP
|
||||||
|
|
||||||
// mapnik
|
// mapnik
|
||||||
#include <mapnik/global.hpp>
|
#include <mapnik/global.hpp>
|
||||||
|
@ -62,4 +62,4 @@ bool generate_svg (OutputIterator sink, mapnik::geometry_type const& geom)
|
||||||
|
|
||||||
}}
|
}}
|
||||||
|
|
||||||
#endif // MAPNIK_GEOMETRY_TO_SVG_HPP
|
#endif // MAPNIK_GEOMETRY_SVG_GENERATOR_HPP
|
|
@ -22,8 +22,8 @@
|
||||||
|
|
||||||
//$Id$
|
//$Id$
|
||||||
|
|
||||||
#ifndef MAPNIK_GEOMETRY_TO_WKT_HPP
|
#ifndef MAPNIK_GEOMETRY_WKT_GENERATOR_HPP
|
||||||
#define MAPNIK_GEOMETRY_TO_WKT_HPP
|
#define MAPNIK_GEOMETRY_WKT_GENERATOR_HPP
|
||||||
|
|
||||||
// mapnik
|
// mapnik
|
||||||
#include <mapnik/global.hpp>
|
#include <mapnik/global.hpp>
|
||||||
|
@ -89,14 +89,11 @@ struct wkt_generator :
|
||||||
wkt_generator()
|
wkt_generator()
|
||||||
: wkt_generator::base_type(wkt)
|
: wkt_generator::base_type(wkt)
|
||||||
{
|
{
|
||||||
using boost::spirit::karma::double_;
|
|
||||||
using boost::spirit::karma::uint_;
|
using boost::spirit::karma::uint_;
|
||||||
using boost::spirit::karma::_val;
|
using boost::spirit::karma::_val;
|
||||||
using boost::spirit::karma::_1;
|
using boost::spirit::karma::_1;
|
||||||
using boost::spirit::karma::_2;
|
|
||||||
using boost::spirit::karma::lit;
|
using boost::spirit::karma::lit;
|
||||||
using boost::spirit::karma::_a;
|
using boost::spirit::karma::_a;
|
||||||
using boost::spirit::karma::_r0;
|
|
||||||
using boost::spirit::karma::_r1;
|
using boost::spirit::karma::_r1;
|
||||||
using boost::spirit::karma::eps;
|
using boost::spirit::karma::eps;
|
||||||
|
|
||||||
|
@ -159,4 +156,4 @@ struct wkt_generator :
|
||||||
}}
|
}}
|
||||||
|
|
||||||
|
|
||||||
#endif // MAPNIK_GEOMETRY_TO_WKT_HPP
|
#endif // MAPNIK_GEOMETRY_WKT_GENERATOR_HPP
|
Loading…
Reference in a new issue