ogr plugin: remove unused code

This commit is contained in:
Dane Springmeyer 2013-11-07 14:43:12 -08:00
parent 08cfc5d0f3
commit 0b39a7eb12
2 changed files with 0 additions and 21 deletions

View File

@ -44,22 +44,6 @@ using mapnik::geometry_utils;
using mapnik::transcoder;
using mapnik::feature_factory;
ogr_featureset::ogr_featureset(mapnik::context_ptr const & ctx,
OGRLayer & layer,
OGRGeometry & extent,
std::string const& encoding)
: ctx_(ctx),
layer_(layer),
layerdef_(layer.GetLayerDefn()),
tr_(new transcoder(encoding)),
fidcolumn_(layer_.GetFIDColumn ()),
count_(0)
{
layer_.SetSpatialFilter (&extent);
}
ogr_featureset::ogr_featureset(mapnik::context_ptr const& ctx,
OGRLayer & layer,
mapnik::box2d<double> const& extent,

View File

@ -38,11 +38,6 @@
class ogr_featureset : public mapnik::Featureset
{
public:
ogr_featureset(mapnik::context_ptr const& ctx,
OGRLayer & layer,
OGRGeometry & extent,
std::string const& encoding);
ogr_featureset(mapnik::context_ptr const& ctx,
OGRLayer & layer,
mapnik::box2d<double> const& extent,