move feature_ptr typedef to feature.hpp to enable access without complexity of datasource header

This commit is contained in:
Dane Springmeyer 2013-01-04 00:18:08 -08:00
parent c7ae161659
commit fd6381dc69
2 changed files with 2 additions and 2 deletions

View file

@ -40,8 +40,6 @@
namespace mapnik {
typedef MAPNIK_DECL boost::shared_ptr<Feature> feature_ptr;
struct MAPNIK_DECL Featureset : private mapnik::noncopyable
{
virtual feature_ptr next() = 0;

View file

@ -313,6 +313,8 @@ inline std::ostream& operator<< (std::ostream & out,feature_impl const& f)
typedef feature_impl Feature;
typedef MAPNIK_DECL boost::shared_ptr<Feature> feature_ptr;
}
#endif // MAPNIK_FEATURE_HPP