]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-1.3.14
authorfred <fred>
Tue, 26 Mar 2002 23:12:11 +0000 (23:12 +0000)
committerfred <fred>
Tue, 26 Mar 2002 23:12:11 +0000 (23:12 +0000)
input/bugs/1845390254.ly [deleted file]
input/test/dotted-slur.ly [deleted file]
lily/include/score-column.hh [deleted file]

diff --git a/input/bugs/1845390254.ly b/input/bugs/1845390254.ly
deleted file mode 100644 (file)
index 87b066e..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-
-% Generated by mudela-book.py; options are center
-\include "paper16.ly"
-\paper  { linewidth = 390.000000 \pt; } 
-
-\header {
-        title = "The river is flowing";
-        composer = "Traditional (?)";
-}
-\include "paper16.ly"
-
-melody = \notes \relative c' {
-        \partial 8;
-        g8 |
-
-}
-
-text = \lyrics {
-        The
-}
-
-accompaniment =\chords {
-        r8
-        c2:3- f:3-.7 d:min es4 c8:min r8
-        c2:min f:min7 g:7^3.5 c:min }
-
-\score {
-        \simultaneous {
-
-          \addlyrics
-            \context Staff = mel {
-              \melody 
-            }
-            \context Lyrics \text
-        }
-%        \midi  { }
-        \paper { linewidth = 10.0\cm; }
-}
diff --git a/input/test/dotted-slur.ly b/input/test/dotted-slur.ly
deleted file mode 100644 (file)
index d6e63b2..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-\version "1.3.5";
-
-\score{
-       \notes{
-               c( d e )c |
-               \slurdotted
-               c( d e )c |
-               \slurnormal
-               c( d e )c |
-               \property Voice.slurDash = 3
-               c( d e )c |
-               \slurnormal
-               c( d e )c |
-       }
-       \paper{ 
-             indent = 0.0\pt;
-               %for broken!
-               % linewidth= 30.\mm;
-               castingalgorithm = \Wordwrap;
-       }
-}
-
-
diff --git a/lily/include/score-column.hh b/lily/include/score-column.hh
deleted file mode 100644 (file)
index eff9441..0000000
+++ /dev/null
@@ -1,50 +0,0 @@
-/*
-  score-column.hh -- declare Score_column
-
-  source file of the GNU LilyPond music typesetter
-
-  (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-*/
-
-
-#ifndef SCORE_COLUMN_HH
-#define SCORE_COLUMN_HH
-
-#include "lily-proto.hh"
-#include "array.hh"
-#include "moment.hh"
-#include "paper-column.hh"
-
-/**
-  Column with durational info.
-  
-  The columns which contain data have a rhythmical
-  position. Score_column is the type with a rhythmical time attached
-  to it. The calculation of idealspacing is done with data in these
-  columns.
-
-  */
-
-class Score_column : public Paper_column {
-  Moment when_;
-public:
-  Moment shortest_playing_mom_;
-  Moment shortest_starter_mom_;
-
-  
-  VIRTUAL_COPY_CONS(Score_element);
-
-  Moment when_mom() { return when_; }
-  Score_column (Moment when);
-
-  bool musical_b() const;
-  void do_print() const;
-};
-
-#endif // SCORE_COLUMN_HH
-
-
-
-
-
-