fix msvs 2010 linking - refs #260

This commit is contained in:
Dane Springmeyer 2014-05-22 21:27:28 -07:00
parent 468ead3370
commit 5a1995e051

View file

@ -29,6 +29,10 @@
#include <boost/optional.hpp>
#include <mapnik/config.hpp>
#ifdef _MSC_VER
#include <mapnik/image_data.hpp>
#endif
namespace mapnik
{
@ -67,6 +71,18 @@ MAPNIK_DECL void scale_image_agg(Image & target,
double y_off_f=0,
double filter_radius=2);
#ifdef _MSC_VER
MAPNIK_DECL void scale_image_agg<mapnik::image_data_32>(
mapnik::image_data_32 & target,
mapnik::image_data_32 &const source,
scaling_method_e scaling_method,
double image_ratio_x,
double image_ratio_y,
double x_off_f=0,
double y_off_f=0,
double filter_radius=2);
#endif
template <typename Image>
void scale_image_bilinear_old(Image & target,
Image const& source,