+ 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 {
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) {

View file

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