This commit is contained in:
Dane Springmeyer 2013-06-02 20:19:33 -07:00
parent 8c04925fce
commit 3b2bdba7b0
27 changed files with 66 additions and 6 deletions

View file

@ -12,6 +12,8 @@
#include <sstream>
#include <cstdio>
#include <set>
#include <stdexcept>
// boost
#include <boost/version.hpp>

View file

@ -30,7 +30,6 @@
#include <boost/python.hpp>
#include <boost/noncopyable.hpp>
// mapnik
#include <mapnik/feature.hpp>
#include <mapnik/feature_kv_iterator.hpp>
@ -39,6 +38,9 @@
#include <mapnik/wkt/wkt_factory.hpp>
#include <mapnik/json/geojson_generator.hpp>
// stl
#include <stdexcept>
namespace {
using mapnik::geometry_utils;

View file

@ -43,6 +43,9 @@
#include <mapnik/util/geometry_to_svg.hpp>
#endif
// stl
#include <stdexcept>
namespace {
using mapnik::from_wkt;

View file

@ -28,6 +28,9 @@
//mapnik
#include <mapnik/palette.hpp>
// stl
#include <stdexcept>
static boost::shared_ptr<mapnik::rgba_palette> make_palette( std::string const& palette, std::string const& format )
{
mapnik::rgba_palette::palette_type type = mapnik::rgba_palette::PALETTE_RGBA;

View file

@ -27,6 +27,10 @@
// boost
#include <boost/python.hpp>
// stl
#include <stdexcept>
using mapnik::proj_transform;
using mapnik::projection;

View file

@ -25,6 +25,9 @@
#include <boost/python/detail/api_placeholder.hpp>
#include <boost/python/exception_translator.hpp>
// stl
#include <stdexcept>
void register_cairo();
void export_color();
void export_coord();

View file

@ -39,6 +39,9 @@
#include "mapnik_value_converter.hpp"
#include "python_grid_utils.hpp"
// stl
#include <stdexcept>
namespace mapnik {

View file

@ -54,7 +54,7 @@
// stl
#include <vector>
#include <stdexcept>
#if defined(RENDERING_STATS)
#include <mapnik/timer.hpp>

View file

@ -35,8 +35,11 @@
#include <boost/optional.hpp>
#include <boost/lexical_cast.hpp>
#include <boost/format.hpp>
// stl
#include <string>
#include <stdexcept>
namespace mapnik { namespace detail {

View file

@ -1,19 +1,22 @@
#ifndef MAPNIK_SIMPLIFY_CONVERTER_HPP
#define MAPNIK_SIMPLIFY_CONVERTER_HPP
// mapnik
#include <mapnik/config.hpp>
#include <mapnik/box2d.hpp>
#include <mapnik/vertex.hpp>
#include <mapnik/simplify.hpp>
#include <mapnik/noncopyable.hpp>
// STL
// stl
#include <limits>
#include <set>
#include <vector>
#include <deque>
#include <cmath>
// Boost
#include <stdexcept>
// boost
#include <boost/optional.hpp>
namespace mapnik

View file

@ -30,11 +30,14 @@
#include <mapnik/boolean.hpp>
#include <mapnik/color_factory.hpp>
#include <mapnik/expression.hpp>
// boost
#include <boost/optional.hpp>
#include <boost/format.hpp>
// stl
#include <string>
#include <stdexcept>
namespace mapnik { namespace detail {

View file

@ -35,6 +35,7 @@
// stl
#include <string>
#include <stdexcept>
using mapnik::mapped_memory_cache;

View file

@ -26,6 +26,8 @@
// stl
#include <cstring>
#include <fstream>
#include <stdexcept>
// mapnik
#include <mapnik/global.hpp>

View file

@ -36,6 +36,7 @@
// stl
#include <algorithm>
#include <map>
#include <stdexcept>
namespace mapnik {

View file

@ -25,6 +25,7 @@
// stl
#include <ctime>
#include <stdexcept>
#ifndef MAPNIK_LOG_FORMAT
#define MAPNIK_LOG_FORMAT Mapnik LOG> %Y-%m-%d %H:%M:%S:

View file

@ -39,6 +39,7 @@
// stl
#include <sstream>
#include <algorithm>
#include <stdexcept>
// icu
#include <unicode/ubidi.h>

View file

@ -29,6 +29,9 @@
// boost
#include <boost/filesystem/convenience.hpp>
// stl
#include <stdexcept>
#if (BOOST_FILESYSTEM_VERSION <= 2)
#include <boost/scoped_array.hpp>

View file

@ -35,6 +35,9 @@
#include <boost/spirit/include/qi.hpp>
#include <boost/spirit/include/support_multi_pass.hpp>
// stl
#include <stdexcept>
namespace mapnik { namespace json {
#if BOOST_VERSION >= 104700

View file

@ -62,7 +62,7 @@ bool geometry_generator::generate(std::string & geojson, mapnik::geometry_contai
#include <string>
#include <sstream>
#include <exception>
#include <stdexcept>
namespace mapnik { namespace json {

View file

@ -30,6 +30,9 @@
#include <boost/spirit/include/support_multi_pass.hpp>
#include <boost/spirit/include/phoenix_core.hpp>
// stl
#include <stdexcept>
namespace mapnik { namespace json {
#if BOOST_VERSION >= 104700

View file

@ -42,6 +42,9 @@
// boost
#include <boost/make_shared.hpp>
// stl
#include <stdexcept>
namespace mapnik
{

View file

@ -33,6 +33,10 @@
#include <boost/foreach.hpp>
#include <boost/make_shared.hpp>
// stl
#include <stdexcept>
namespace mapnik {
path_expression_ptr parse_path(std::string const& str)

View file

@ -33,6 +33,7 @@
// stl
#include <vector>
#include <stdexcept>
namespace mapnik {

View file

@ -26,6 +26,9 @@
#include <mapnik/util/trim.hpp>
#include <mapnik/well_known_srs.hpp>
// stl
#include <stdexcept>
#ifdef MAPNIK_USE_PROJ4
// proj4
#include <proj_api.h>

View file

@ -30,6 +30,8 @@
// stl
#include <string>
#include <sstream>
#include <stdexcept>
namespace mapnik
{

View file

@ -9,7 +9,7 @@
#include <boost/foreach.hpp>
// stl
#include <exception>
#include <stdexcept>
#include <iostream>
#include <fstream>
#include <vector>

View file

@ -18,6 +18,9 @@
#include <mapnik/util/geometry_to_wkt.hpp>
#include <mapnik/util/geometry_to_svg.hpp>
// stl
#include <stdexcept>
struct output_geometry_backend
{
output_geometry_backend(boost::ptr_vector<mapnik::geometry_type> & paths, mapnik::eGeomType type)