From 950cfb8473313f6de6706a312d6dee6401b14fbb Mon Sep 17 00:00:00 2001 From: Artem Pavlenko Date: Thu, 12 Feb 2009 14:33:00 +0000 Subject: [PATCH] + add missing MAPNIK_DECL --- include/mapnik/memory_datasource.hpp | 4 ++-- include/mapnik/unicode.hpp | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/include/mapnik/memory_datasource.hpp b/include/mapnik/memory_datasource.hpp index 8b90527ab..c1ec67a55 100644 --- a/include/mapnik/memory_datasource.hpp +++ b/include/mapnik/memory_datasource.hpp @@ -31,7 +31,7 @@ namespace mapnik { - class memory_datasource : public datasource + class MAPNIK_DECL memory_datasource : public datasource { friend class memory_featureset; public: @@ -52,7 +52,7 @@ namespace mapnik { // TODO -- possible redesign, move into separate file // - class point_datasource : public mapnik::memory_datasource { + class MAPNIK_DECL point_datasource : public mapnik::memory_datasource { public: point_datasource() : feat_id(0) {} void add_point(double x, double y, const char* key, const char* value) { diff --git a/include/mapnik/unicode.hpp b/include/mapnik/unicode.hpp index d711b4f2c..db9f7b5f4 100644 --- a/include/mapnik/unicode.hpp +++ b/include/mapnik/unicode.hpp @@ -24,6 +24,8 @@ #ifndef UNICODE_HPP #define UNICODE_HPP +//mapnik +#include // icu #include #include @@ -33,7 +35,7 @@ #include namespace mapnik { - class transcoder : private boost::noncopyable + class MAPNIK_DECL transcoder : private boost::noncopyable { public: explicit transcoder (std::string const& encoding);