lilypond-1.3.16
authorfred <fred>
Tue, 26 Mar 2002 23:13:57 +0000 (23:13 +0000)
committerfred <fred>
Tue, 26 Mar 2002 23:13:57 +0000 (23:13 +0000)
lily/directional-spanner.cc [deleted file]
lily/include/col-info.hh [deleted file]

diff --git a/lily/directional-spanner.cc b/lily/directional-spanner.cc
deleted file mode 100644 (file)
index 41751d7..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-#include "directional-spanner.hh"
-#include "offset.hh"
-
-Direction
-Directional_spanner::get_default_dir() const
-{
-  return DOWN;
-}
-
-void
-Directional_spanner::do_pre_processing()
-{
-  if (!get_direction ())
-    set_direction (get_default_dir());
-}
-
-
diff --git a/lily/include/col-info.hh b/lily/include/col-info.hh
deleted file mode 100644 (file)
index e5d93f4..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
-  col-info.hh -- declare Column_info
-
-  source file of the GNU LilyPond music typesetter
-
-  (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-*/
-
-
-#ifndef COL_INFO_HH
-#define COL_INFO_HH
-
-#include "lily-proto.hh"
-#include "pointer.hh"
-#include "interval.hh"
-#include "drul-array.hh"
-
-struct Spacer_rod {
-  Real distance_f_;
-  int other_idx_;
-  void print () const;
-};
-
-/// helper struct for #Spacing_problem#
-struct Column_info {
-  Paper_column *pcol_l_;
-  P<Real> fixpos_p_;
-
-  Interval width_;
-  int rank_i_;
-  /// did some tricks to make this column come out.
-  bool ugh_b_;         
-
-  Drul_array< Array<Spacer_rod> > rods_;
-
-  Column_info();
-  Column_info (Paper_column *,Real const *);
-
-  int rank_i () const;
-  void print() const;
-  bool fixed_b() const ;
-  Real fixed_position() const ;
-};
-
-#endif // COL_INFO_HH