remove getData and getBytes on image_view (they are unused) - refs #2627

This commit is contained in:
Dane Springmeyer 2015-01-08 10:52:40 -08:00
parent 63ccb4c36c
commit e4cb1b33a0

View file

@ -105,22 +105,11 @@ public:
return data_.getRow(row + y_, x0) + x_;
}
inline const unsigned char* getBytes() const
{
return data_.getBytes();
}
inline T const& data() const
{
return data_;
}
inline const pixel_type* getData() const
{
return data_.getData();
}
private:
unsigned x_;
unsigned y_;