From e88b9c19c796eb8fabb3dace7dedad97b417d63f Mon Sep 17 00:00:00 2001 From: fred Date: Mon, 30 Mar 1998 23:02:19 +0000 Subject: [PATCH] lilypond-0.1.52 --- lily/include/rod.hh | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 lily/include/rod.hh diff --git a/lily/include/rod.hh b/lily/include/rod.hh new file mode 100644 index 0000000000..42509d453e --- /dev/null +++ b/lily/include/rod.hh @@ -0,0 +1,37 @@ +/* + rod.hh -- declare Rod, Column_rod + + source file of the GNU LilyPond music typesetter + + (c) 1998 Han-Wen Nienhuys + + */ + +#ifndef ROD_HH +#define ROD_HH +#include "lily-proto.hh" +#include "direction.hh" +#include "drul-array.hh" + +struct Column_rod { + Paper_column *other_l_; + Real distance_f_; + Direction dir_; + Column_rod (); + static int compare (const Column_rod &r1, const Column_rod &r2); + void print () const; +}; + +struct Rod +{ + Drul_array item_l_drul_; + Real distance_f_; + void add_to_cols (); + + Rod (Item*,Item*); + Rod (); +}; + + +#endif /* ROD_HH */ + -- 2.39.5