]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/killing-cons.tcc
release: 1.1.28
[lilypond.git] / lily / include / killing-cons.tcc
1 /*   
2   killing-cons.tcc -- declare Killing_cons
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #ifndef KILLING_CONS_TCC
11 #define KILLING_CONS_TCC
12
13 template<class T>
14 Cons<T>::~Cons ()
15 {
16 }
17
18 template<class T>
19 Killing_cons<T>::~Killing_cons ()
20 {
21   delete car_;
22   delete next_;
23 }
24
25
26 #endif /* KILLING_CONS_TCC */
27