make mapnik::Feature base class noncopyable

This commit is contained in:
Artem Pavlenko 2012-01-18 09:12:46 -05:00
parent d7d87644af
commit d9984abadd

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() {};