Lines 110-116
Link Here
|
110 |
return *this; |
110 |
return *this; |
111 |
} |
111 |
} |
112 |
|
112 |
|
113 |
bool Iterator::operator== (const Iterator& rIterator) |
113 |
bool Iterator::operator== (const Iterator& rIterator) const |
114 |
{ |
114 |
{ |
115 |
if (!mxIterator || !rIterator.mxIterator) |
115 |
if (!mxIterator || !rIterator.mxIterator) |
116 |
return mxIterator.get() == rIterator.mxIterator.get(); |
116 |
return mxIterator.get() == rIterator.mxIterator.get(); |
Lines 118-124
Link Here
|
118 |
return *mxIterator == *rIterator.mxIterator; |
118 |
return *mxIterator == *rIterator.mxIterator; |
119 |
} |
119 |
} |
120 |
|
120 |
|
121 |
bool Iterator::operator!= (const Iterator& rIterator) |
121 |
bool Iterator::operator!= (const Iterator& rIterator) const |
122 |
{ |
122 |
{ |
123 |
return ! operator==(rIterator); |
123 |
return ! operator==(rIterator); |
124 |
} |
124 |
} |