make mapnik::Feature base class noncopyable

This commit is contained in:
Artem Pavlenko 2012-01-18 09:12:46 -05:00 committed by Artem Pavlenko
parent e699ba17cb
commit 745a20d4c3

View file

@ -43,7 +43,7 @@ namespace mapnik {
typedef MAPNIK_DECL boost::shared_ptr<Feature> feature_ptr;
struct MAPNIK_DECL Featureset
struct MAPNIK_DECL Featureset : private boost::noncopyable
{
virtual feature_ptr next()=0;
virtual ~Featureset() {};