Finally removed deprecated iterator_t.

This commit is contained in:
Tobias Brunner
2011-07-06 09:43:46 +02:00
parent 203497d80e
commit 629fd2f4f6
7 changed files with 22 additions and 357 deletions
-14
View File
@@ -25,7 +25,6 @@
typedef struct linked_list_t linked_list_t;
#include <utils/iterator.h>
#include <utils/enumerator.h>
/**
@@ -61,19 +60,6 @@ struct linked_list_t {
*/
int (*get_count) (linked_list_t *this);
/**
* Creates a iterator for the given list.
*
* @warning Created iterator_t object has to get destroyed by the caller.
*
* @deprecated Iterator is obsolete and will disappear, it is too
* complicated to implement. Use enumerator instead.
*
* @param forward iterator direction (TRUE: front to end)
* @return new iterator_t object
*/
iterator_t *(*create_iterator) (linked_list_t *this, bool forward);
/**
* Create an enumerator over the list.
*