no need for boost::noncopyable in derived classes

This commit is contained in:
Artem Pavlenko 2012-01-18 09:13:29 -05:00 committed by Artem Pavlenko
parent 745a20d4c3
commit a88186fef8
4 changed files with 4 additions and 7 deletions

View file

@ -41,8 +41,7 @@ using mapnik::context_ptr;
class IResultSet;
class postgis_featureset : public mapnik::Featureset,
private boost::noncopyable
class postgis_featureset : public mapnik::Featureset
{
private:
boost::shared_ptr<IResultSet> rs_;

View file

@ -219,7 +219,7 @@ void shape_datasource::init(shape_io& shape) const
#ifdef MAPNIK_DEBUG
std::clog << "Shape Plugin: extent=" << extent_ << std::endl;
std::clog << "Shape Plugin: file_length=" << file_length_ << std::endl;
std::clog << "Shape Plugin: shape_type=" << shape_type << std::endl;
std::clog << "Shape Plugin: shape_type=" << shape_type_ << std::endl;
#endif
}

View file

@ -40,8 +40,7 @@ using mapnik::transcoder;
using mapnik::context_ptr;
template <typename filterT>
class shape_featureset : public Featureset,
private boost::noncopyable
class shape_featureset : public Featureset
{
filterT filter_;
context_ptr ctx_;

View file

@ -43,8 +43,7 @@ using mapnik::feature_ptr;
using mapnik::context_ptr;
template <typename filterT>
class shape_index_featureset : public Featureset,
private boost::noncopyable
class shape_index_featureset : public Featureset
{
public:
shape_index_featureset(filterT const& filter,