+ make image_reader non-copyable

This commit is contained in:
artemp 2013-04-09 11:38:50 +01:00
parent 270b66318d
commit a25f1ccb56

View file

@ -26,7 +26,8 @@
// mapnik
#include <mapnik/image_data.hpp>
#include <mapnik/config.hpp>
// boost
#include <boost/utility.hpp>
// stl
#include <stdexcept>
#include <string>
@ -49,7 +50,7 @@ public:
}
};
struct MAPNIK_DECL image_reader
struct MAPNIK_DECL image_reader : private boost::noncopyable
{
virtual unsigned width() const=0;
virtual unsigned height() const=0;