From 5dd0cde57b035069f89a1182a3b00b46e7e810ff Mon Sep 17 00:00:00 2001 From: fred Date: Sun, 24 Mar 2002 20:02:51 +0000 Subject: [PATCH] lilypond-0.1.52 --- bin/genheader.in | 5 ++-- lily/include/single-malt-grouping-item.hh | 35 +++++++++++++++++++++++ 2 files changed, 38 insertions(+), 2 deletions(-) create mode 100644 lily/include/single-malt-grouping-item.hh diff --git a/bin/genheader.in b/bin/genheader.in index 57f0e9fb8f..9f16663bf7 100644 --- a/bin/genheader.in +++ b/bin/genheader.in @@ -18,6 +18,7 @@ import string import sys import os import getopt +import time class My_options: def __init__(self): @@ -59,8 +60,8 @@ def head_str(filename): what=" implement " - headstr = '\n%s -- %s\n\nsource file of %s\n\n(c) 1997 %s <%s>\n' \ - %(filename, what, project_str(), name(), mail()) + headstr = '\n%s -- %s\n\nsource file of %s\n\n(c) %d %s <%s>\n' \ + %(filename, what, project_str(), time.localtime (time.time ())[0], name(), mail()) return headstr diff --git a/lily/include/single-malt-grouping-item.hh b/lily/include/single-malt-grouping-item.hh new file mode 100644 index 0000000000..4b74897022 --- /dev/null +++ b/lily/include/single-malt-grouping-item.hh @@ -0,0 +1,35 @@ +/* + single-malt-grouping-item.hh -- declare + + source file of the GNU LilyPond music typesetter + + (c) 1997 Han-Wen Nienhuys + + */ + +#ifndef SINGLE_MALT_GROUPING_ITEM_HH +#define SINGLE_MALT_GROUPING_ITEM_HH + +#include "item.hh" + +/** Calc dimensions for the Separating_group_spanner; this has to be + an itme to get dependencies correct. It can't be an element_group + since these usually are in a different X_group + + It's 1 30 am. Naming suggestions appreciated. */ +class Single_malt_grouping_item : public Item +{ + SCORE_ELEM_CLONE (Single_malt_grouping_item); + Link_array item_l_arr_; +public: + Single_malt_grouping_item (); + Interval do_width () const; + void add (Item*); + DECLARE_MY_RUNTIME_TYPEINFO; +protected: + virtual void do_substitute_dependency (Score_elem*, Score_elem*); + +}; + +#endif /* SINGLE_MALT_GROUPING_ITEM_HH */ + -- 2.39.5