]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-1.3.71
authorfred <fred>
Wed, 27 Mar 2002 00:04:06 +0000 (00:04 +0000)
committerfred <fred>
Wed, 27 Mar 2002 00:04:06 +0000 (00:04 +0000)
lily/idealspacing.cc [deleted file]
lily/include/header.hh [deleted file]
lily/include/idealspacing.hh [deleted file]

diff --git a/lily/idealspacing.cc b/lily/idealspacing.cc
deleted file mode 100644 (file)
index 90cfa1d..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-/*
-  idealspacing.cc -- implement Idealspacing
-
-  source file of the GNU LilyPond music typesetter
-
-  (c) 1996--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-*/
-
-#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 (file)
index c027fc3..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-/*
-  header.hh -- declare Header
-
-  source file of the GNU LilyPond music typesetter
-
-  (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-*/
-
-
-#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 (file)
index 3e9585d..0000000
+++ /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<int> cols_drul_;
-    
-  Idealspacing();
-};
-
-
-#endif // IDEALSPACING_HH
-