+ add missing MAPNIK_DECL

This commit is contained in:
Artem Pavlenko 2009-02-12 14:33:00 +00:00
parent be2c27ff86
commit 950cfb8473
2 changed files with 5 additions and 3 deletions

View file

@ -31,7 +31,7 @@
namespace mapnik { namespace mapnik {
class memory_datasource : public datasource class MAPNIK_DECL memory_datasource : public datasource
{ {
friend class memory_featureset; friend class memory_featureset;
public: public:
@ -52,7 +52,7 @@ namespace mapnik {
// TODO -- possible redesign, move into separate file // TODO -- possible redesign, move into separate file
// //
class point_datasource : public mapnik::memory_datasource { class MAPNIK_DECL point_datasource : public mapnik::memory_datasource {
public: public:
point_datasource() : feat_id(0) {} point_datasource() : feat_id(0) {}
void add_point(double x, double y, const char* key, const char* value) { void add_point(double x, double y, const char* key, const char* value) {

View file

@ -24,6 +24,8 @@
#ifndef UNICODE_HPP #ifndef UNICODE_HPP
#define UNICODE_HPP #define UNICODE_HPP
//mapnik
#include <mapnik/config.hpp>
// icu // icu
#include <unicode/unistr.h> #include <unicode/unistr.h>
#include <unicode/ucnv.h> #include <unicode/ucnv.h>
@ -33,7 +35,7 @@
#include <string> #include <string>
namespace mapnik { namespace mapnik {
class transcoder : private boost::noncopyable class MAPNIK_DECL transcoder : private boost::noncopyable
{ {
public: public:
explicit transcoder (std::string const& encoding); explicit transcoder (std::string const& encoding);