allow copy of mapnik::projection when proj_transform is created - closes #658 - TODO - consider using shared_ptr

This commit is contained in:
Dane Springmeyer 2011-04-13 21:30:39 +00:00
parent ac3488efb6
commit ff006dd3f0

View file

@ -27,6 +27,8 @@
// mapnik
#include <mapnik/projection.hpp>
#include <mapnik/box2d.hpp>
// boost
#include <boost/utility.hpp>
@ -47,8 +49,8 @@ public:
mapnik::projection const& dest() const;
private:
projection const& source_;
projection const& dest_;
projection const source_;
projection const dest_;
bool is_source_longlat_;
bool is_dest_longlat_;
bool is_source_equal_dest_;