]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.63
authorfred <fred>
Sun, 24 Mar 2002 19:43:10 +0000 (19:43 +0000)
committerfred <fred>
Sun, 24 Mar 2002 19:43:10 +0000 (19:43 +0000)
flower/include/plist.icc
flower/include/plist.tcc

index f24e0ddf4500ecbc96c3989ac20c5888c74ac37f..80ce1ba198c58aa7c7d93d88f3ec43153cfbed93 100644 (file)
@@ -1,7 +1,7 @@
 /* -*-c++-*-
   plist.icc -- part of flowerlib
 
-  (c) 1996 Han-Wen Nienhuys& Jan Nieuwenhuizen
+  (c) 1996,1997 Han-Wen Nienhuys& Jan Nieuwenhuizen
 */
 
 #ifndef PLIST_INL
@@ -9,7 +9,7 @@
 
 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;
index 7129cdbe3d2027ba1fd44b6941005c32a2dbe077..2f75d08adfc3a2be8e63e27b645ad9eb722983a6 100644 (file)
@@ -1,12 +1,12 @@
 #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()) {
@@ -16,7 +16,7 @@ IPointer_list<T>::~IPointer_list()
 
 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++)