summaryrefslogtreecommitdiff
path: root/basebmp/inc/pixeliterator.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'basebmp/inc/pixeliterator.hxx')
-rw-r--r--basebmp/inc/pixeliterator.hxx45
1 files changed, 0 insertions, 45 deletions
diff --git a/basebmp/inc/pixeliterator.hxx b/basebmp/inc/pixeliterator.hxx
index d38af98ca668..7f80c974503f 100644
--- a/basebmp/inc/pixeliterator.hxx
+++ b/basebmp/inc/pixeliterator.hxx
@@ -154,26 +154,6 @@ public:
return y - rhs.y;
}
- value_type get() const
- {
- return *y();
- }
-
- value_type get(difference_type d) const
- {
- return *y(d);
- }
-
- void set( value_type v ) const
- {
- *y() = v;
- }
-
- void set( value_type v, difference_type d ) const
- {
- *y(d) = v;
- }
-
reference operator*() const
{
return *y();
@@ -224,11 +204,6 @@ private:
return y() + x;
}
- pointer current(int dx, int dy) const
- {
- return y(dy) + x+dx;
- }
-
public:
PixelIterator() :
x(0),
@@ -296,26 +271,6 @@ public:
return column_iterator(y,x);
}
- value_type get() const
- {
- return *current();
- }
-
- value_type get(difference_type const & d) const
- {
- return *current(d.y, d.x);
- }
-
- void set( value_type v ) const
- {
- *current() = v;
- }
-
- void set( value_type v, difference_type const & d ) const
- {
- *current(d.y,d.x) = v;
- }
-
reference operator*() const
{
return *current();