forward declare when possible

This commit is contained in:
Dane Springmeyer 2013-01-27 23:53:37 -05:00
parent c92c8f1bfd
commit e327880eb1
2 changed files with 5 additions and 2 deletions

View file

@ -24,12 +24,13 @@
#define MAPNIK_WARP_HPP
// mapnik
#include <mapnik/raster.hpp>
#include <mapnik/proj_transform.hpp>
#include <mapnik/image_scaling.hpp>
namespace mapnik {
class raster;
class proj_transform;
void reproject_and_scale_raster(raster & target,
raster const& source,
proj_transform const& prj_trans,

View file

@ -28,6 +28,8 @@
#include <mapnik/box2d.hpp>
#include <mapnik/ctrans.hpp>
#include <mapnik/span_image_filter.hpp>
#include <mapnik/raster.hpp>
#include <mapnik/proj_transform.hpp>
// agg
#include "agg_image_filters.h"