diff options
| author | Daniel Burrows <dburrows@debian.org> | 2010-05-08 19:55:15 -0700 |
|---|---|---|
| committer | Daniel Burrows <dburrows@debian.org> | 2010-05-08 19:55:15 -0700 |
| commit | d83f969be22c44adbe92eb3514eb142f49594af0 (patch) | |
| tree | 3febd5b7a99e7e7cc7c295a081e2705700337a49 /src/generic/util | |
| parent | b9ee89496a94c0179c1aacba0ecee16eb73a8f76 (diff) | |
| download | aptitude-d83f969be22c44adbe92eb3514eb142f49594af0.tar.gz | |
Remove old references to enumerators from the dynamic_list code.
Diffstat (limited to 'src/generic/util')
| -rw-r--r-- | src/generic/util/dynamic_list.h | 2 | ||||
| -rw-r--r-- | src/generic/util/dynamic_list_collection.h | 2 | ||||
| -rw-r--r-- | src/generic/util/dynamic_list_impl.h | 1 |
3 files changed, 0 insertions, 5 deletions
diff --git a/src/generic/util/dynamic_list.h b/src/generic/util/dynamic_list.h index b93721ad..4a2814e4 100644 --- a/src/generic/util/dynamic_list.h +++ b/src/generic/util/dynamic_list.h @@ -3,8 +3,6 @@ #ifndef TOPLEVEL_DYNAMIC_LIST_H #define TOPLEVEL_DYNAMIC_LIST_H -#include "enumerator.h" - #include <boost/shared_ptr.hpp> #include <sigc++/signal.h> diff --git a/src/generic/util/dynamic_list_collection.h b/src/generic/util/dynamic_list_collection.h index e327fe8f..c89cdffb 100644 --- a/src/generic/util/dynamic_list_collection.h +++ b/src/generic/util/dynamic_list_collection.h @@ -148,8 +148,6 @@ namespace aptitude void remove_list(const boost::shared_ptr<dynamic_list<T> > &lst); static boost::shared_ptr<dynamic_list_collection> create(); - - boost::shared_ptr<enumerator<T> > enumerate(); }; template<typename T> diff --git a/src/generic/util/dynamic_list_impl.h b/src/generic/util/dynamic_list_impl.h index 97386212..6b0b8bcb 100644 --- a/src/generic/util/dynamic_list_impl.h +++ b/src/generic/util/dynamic_list_impl.h @@ -58,7 +58,6 @@ namespace aptitude /** \brief Create an empty list. */ static boost::shared_ptr<dynamic_list_impl> create(); - boost::shared_ptr<enumerator<T> > enumerate(); void insert(const T &t, std::size_t position); void remove(std::size_t position); void move(std::size_t from, std::size_t to); |
