From: fred Date: Wed, 27 Mar 2002 00:04:06 +0000 (+0000) Subject: lilypond-1.3.71 X-Git-Tag: release/1.5.59~1160 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=a67551655ca323e7d381be8003be3f056b8d2694;p=lilypond.git lilypond-1.3.71 --- diff --git a/lily/idealspacing.cc b/lily/idealspacing.cc deleted file mode 100644 index 90cfa1dbae..0000000000 --- a/lily/idealspacing.cc +++ /dev/null @@ -1,20 +0,0 @@ -/* - idealspacing.cc -- implement Idealspacing - - source file of the GNU LilyPond music typesetter - - (c) 1996--2000 Han-Wen Nienhuys -*/ - -#include "idealspacing.hh" -#include "paper-column.hh" -#include "paper-score.hh" -#include "debug.hh" - - -Idealspacing::Idealspacing() -{ - space_f_ = 0.0; - hooke_f_ = 0.0; - cols_drul_[LEFT] = cols_drul_[RIGHT] = -1; -} diff --git a/lily/include/header.hh b/lily/include/header.hh deleted file mode 100644 index c027fc3958..0000000000 --- a/lily/include/header.hh +++ /dev/null @@ -1,19 +0,0 @@ -/* - header.hh -- declare Header - - source file of the GNU LilyPond music typesetter - - (c) 1997--2000 Han-Wen Nienhuys -*/ - - -#ifndef HEADER_HH -#define HEADER_HH - -#include "string.hh" -#include "dictionary.hh" -#include "scope.hh" - - - -#endif // HEADER_HH diff --git a/lily/include/idealspacing.hh b/lily/include/idealspacing.hh deleted file mode 100644 index 3e9585d145..0000000000 --- a/lily/include/idealspacing.hh +++ /dev/null @@ -1,29 +0,0 @@ -/* - idealspacing.hh -- part of GNU LilyPond - - (c) 1996--2000 Han-Wen Nienhuys -*/ - -#ifndef IDEALSPACING_HH -#define IDEALSPACING_HH -#include "lily-proto.hh" -#include "drul-array.hh" - -/// ideal spacing between two columns -struct Idealspacing { - - /// the ideal distance - Real space_f_; - - /// Hooke's constant: how strong are the "springs" attached to columns - Real hooke_f_; - - /// the two columns - Drul_array cols_drul_; - - Idealspacing(); -}; - - -#endif // IDEALSPACING_HH -