]> git.donarmstrong.com Git - lilypond.git/commitdiff
*** empty log message ***
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Thu, 16 Feb 2006 11:59:51 +0000 (11:59 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Thu, 16 Feb 2006 11:59:51 +0000 (11:59 +0000)
flower/include/killing-cons.tcc [deleted file]
lily/midi-item.cc
lily/performance.cc
lily/source.cc

diff --git a/flower/include/killing-cons.tcc b/flower/include/killing-cons.tcc
deleted file mode 100644 (file)
index 60b6d68..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-/*
-  killing-cons.tcc -- declare Killing_cons
-
-  source file of the GNU LilyPond music typesetter
-
-  (c) 1999--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
-*/
-
-#ifndef KILLING_CONS_TCC
-#define KILLING_CONS_TCC
-
-#include "cons.hh"
-
-template<class T>
-Killing_cons<T>::~Killing_cons ()
-{
-  delete Cons<T>::car_;
-}
-
-template<class T>
-void
-copy_killing_cons_list (Cons_list<T> &dest, Cons<T> *src)
-{
-  for (; src; src = src->next_)
-    {
-      T *t = new T (*src->car_);
-      dest.append (new Killing_cons<T> (t, 0));
-    }
-}
-
-template<class T>
-void
-clone_killing_cons_list (Cons_list<T> &dest, Cons<T> *src)
-{
-  for (; src; src = src->next_)
-    {
-      T *t = src->car_->clone ();
-      dest.append (new Killing_cons<T> (t, 0));
-    }
-}
-
-#endif /* KILLING_CONS_TCC */
-
index a7d3e629d8af69c04c1a548095e2594e5f76a82e..7f8edb041cec4d2fc5d6425efd5ca111c52c95ef 100644 (file)
@@ -17,8 +17,6 @@
 #include "string-convert.hh"
 #include "warn.hh"
 
-#include "killing-cons.tcc"
-
 #define PITCH_WHEEL_TOP 0x3FFF
 #define PITCH_WHEEL_CENTER 0x2000
 #define PITCH_WHEEL_BOTTOM 0x0000
index 7fc440e6b8372673540e6cb5a5069f3bf46dda8d..f765a3193772b021c0bcda98209810b2f676753e 100644 (file)
@@ -23,8 +23,6 @@ using namespace std;
 #include "string-convert.hh"
 #include "warn.hh"
 
-#include "killing-cons.tcc"
-
 Performance::Performance ()
 {
   midi_ = 0;
index 90e99d5ed3e878c24214e7011a29abb680dcb003..c400a2bfa8a2e7ae100abaab4713818d3703329d 100644 (file)
@@ -8,7 +8,6 @@
 
 #include "source.hh"
 
-#include "killing-cons.tcc"
 #include "source-file.hh"
 #include "file-path.hh"