From: Han-Wen Nienhuys & Jan Nieuwenhuizen Date: Wed, 2 Apr 1997 14:59:40 +0000 (+0200) Subject: partial: 0.0.46.jcn1.hanjan X-Git-Tag: release/0.0.46.jcn1~1 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=04cf544172e512b5799bc42c2109e34616f67b1c;p=lilypond.git partial: 0.0.46.jcn1.hanjan --- diff --git a/flower/include/plist.icc b/flower/include/plist.icc new file mode 100644 index 0000000000..8b5f8eea56 --- /dev/null +++ b/flower/include/plist.icc @@ -0,0 +1,21 @@ +/* -*-c++-*- + plist.icc -- part of flowerlib + + (c) 1996 Han-Wen Nienhuys& Jan Nieuwenhuizen +*/ + +#ifndef PLIST_INL +#define PLIST_INL + +template +void +PL_copy(IPointerList &to, IPointerList const&src) +{ + for (PCursor 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 index 82be364334..0000000000 --- a/flower/include/plist.inl +++ /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 -void -PL_copy(IPointerList &to, IPointerList const&src) -{ - for (PCursor pc(src); pc.ok(); pc++) { - T *q = pc; - T *p=new T(*q) ; - to.bottom().add(p); - } -} - -#endif