no need for boost::noncopyable in derived classes
This commit is contained in:
parent
745a20d4c3
commit
a88186fef8
4 changed files with 4 additions and 7 deletions
|
@ -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_;
|
||||
|
|
|
@ -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
|
||||
|
||||
}
|
||||
|
|
|
@ -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_;
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Add table
Reference in a new issue