]> git.donarmstrong.com Git - lilypond.git/blob - flower/plist.cc
release: 0.0.4
[lilypond.git] / flower / plist.cc
1 #include "plist.hh"
2
3 // not inlined since it assumes knowledge of destructor.
4 template<class T>
5 void
6 PointerList<T>::remove( Cursor<T> me )
7 {
8     if ( me.ok() ) {
9         delete *me;
10         List<T>::remove( me ); 
11     }
12 }
13
14
15
16