/* -*-c++-*-
plist.icc -- part of flowerlib
- (c) 1996 Han-Wen Nienhuys& Jan Nieuwenhuizen
+ (c) 1996,1997 Han-Wen Nienhuys& Jan Nieuwenhuizen
*/
#ifndef PLIST_INL
template<class T>
void
-PL_copy(IPointer_list<T*> &to, IPointer_list<T*> const&src)
+PL_copy(Pointer_list<T*> &to, Pointer_list<T*> const&src)
{
for (PCursor<T*> pc(src); pc.ok(); pc++) {
T *q = pc;
#include "plist.hh"
-#define PL_instantiate(a) template class Pointer_list<a*>; \
+#define PL_instantiate(a) template class Link_list<a*>; \
template class PCursor<a*>;
#define IPL_instantiate(a) PL_instantiate(a); \
- template class IPointer_list<a*>
+ template class Pointer_list<a*>
template<class T>
-IPointer_list<T>::~IPointer_list()
+Pointer_list<T>::~Pointer_list()
{
PCursor<T> c( *this );
while (c.ok()) {
template<class T>
PCursor<T>
-Pointer_list<T>::find(T what ) const
+Link_list<T>::find(T what ) const
{
PCursor<T> i(*this);
for (; i.ok(); i++)