Remove unused IndexIterator constructor

This commit is contained in:
Ingo Weinhold
2011-11-25 06:19:30 +01:00
parent e8d560154a
commit 9590b31b31
2 changed files with 0 additions and 10 deletions
@@ -93,15 +93,6 @@ IndexIterator::IndexIterator()
} }
IndexIterator::IndexIterator(Index* index)
:
fIterator(NULL)
{
if (index)
index->GetIterator(this);
}
IndexIterator::~IndexIterator() IndexIterator::~IndexIterator()
{ {
SetIterator(NULL); SetIterator(NULL);
@@ -74,7 +74,6 @@ protected:
class IndexIterator { class IndexIterator {
public: public:
IndexIterator(); IndexIterator();
IndexIterator(Index* index);
~IndexIterator(); ~IndexIterator();
bool HasNext() const; bool HasNext() const;