/* plist.tcc -- implement Pointer_list source file of the Flower Library (c) 1997 Han-Wen Nienhuys */ #ifndef PLIST_TCC #define PLIST_TCC #include "plist.hh" #define POINTERLIST_INSTANTIATE(a) class Pointer_list;\ template class PCursor; template void Pointer_list::junk() { PCursor c (*this); while (c.ok()) { delete c.remove_p(); } } #endif // PLIST_TCC