]> git.donarmstrong.com Git - lilypond.git/commitdiff
partial: 0.0.46.jcn1.hanjan
authorHan-Wen Nienhuys & Jan Nieuwenhuizen <hanjan@lilypond.org>
Wed, 2 Apr 1997 14:59:40 +0000 (16:59 +0200)
committerHan-Wen Nienhuys & Jan Nieuwenhuizen <hanjan@lilypond.org>
Wed, 2 Apr 1997 14:59:40 +0000 (16:59 +0200)
flower/include/plist.icc [new file with mode: 0644]
flower/include/plist.inl [deleted file]

diff --git a/flower/include/plist.icc b/flower/include/plist.icc
new file mode 100644 (file)
index 0000000..8b5f8ee
--- /dev/null
@@ -0,0 +1,21 @@
+/* -*-c++-*-
+  plist.icc -- part of flowerlib
+
+  (c) 1996 Han-Wen Nienhuys& Jan Nieuwenhuizen
+*/
+
+#ifndef PLIST_INL
+#define PLIST_INL
+
+template<class T>
+void
+PL_copy(IPointerList<T*> &to, IPointerList<T*> const&src)
+{
+    for (PCursor<T*> pc(src); pc.ok(); pc++) {
+       T *q = pc;
+       T *p=new T(*q) ; 
+       to.bottom().add(p);
+    }
+}
+
+#endif
diff --git a/flower/include/plist.inl b/flower/include/plist.inl
deleted file mode 100644 (file)
index 82be364..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-/* -*-c++-*-
-  plist.inl -- part of flowerlib
-
-  (c) 1996 Han-Wen Nienhuys& Jan Nieuwenhuizen
-*/
-
-#ifndef PLIST_INL
-#define PLIST_INL
-
-template<class T>
-void
-PL_copy(IPointerList<T*> &to, IPointerList<T*> const&src)
-{
-    for (PCursor<T*> pc(src); pc.ok(); pc++) {
-       T *q = pc;
-       T *p=new T(*q) ; 
-       to.bottom().add(p);
-    }
-}
-
-#endif