allow cairo compile

This commit is contained in:
Dane Springmeyer 2012-04-18 07:09:12 -07:00
parent ad16d5da33
commit 2f65a7612d
2 changed files with 16 additions and 0 deletions

View file

@ -80,6 +80,8 @@ public:
void start_map_processing(Map const& map); void start_map_processing(Map const& map);
void start_layer_processing(layer const& lay, box2d<double> const& query_extent); void start_layer_processing(layer const& lay, box2d<double> const& query_extent);
void end_layer_processing(layer const& lay); void end_layer_processing(layer const& lay);
void start_style_processing(feature_type_style const& st);
void end_style_processing(feature_type_style const& st);
void process(point_symbolizer const& sym, void process(point_symbolizer const& sym,
mapnik::feature_ptr const& feature, mapnik::feature_ptr const& feature,
proj_transform const& prj_trans); proj_transform const& prj_trans);

View file

@ -721,6 +721,20 @@ void cairo_renderer_base::start_map_processing(Map const& map)
#endif #endif
} }
void cairo_renderer_base::start_style_processing(feature_type_style const& st)
{
#ifdef MAPNIK_DEBUG
std::clog << "start style processing\n";
#endif
}
void cairo_renderer_base::end_style_processing(feature_type_style const& st)
{
#ifdef MAPNIK_DEBUG
std::clog << "end style processing\n";
#endif
}
void cairo_renderer_base::process(polygon_symbolizer const& sym, void cairo_renderer_base::process(polygon_symbolizer const& sym,
mapnik::feature_ptr const& feature, mapnik::feature_ptr const& feature,
proj_transform const& prj_trans) proj_transform const& prj_trans)