From: fred Date: Sun, 24 Mar 2002 20:02:51 +0000 (+0000) Subject: lilypond-0.1.52 X-Git-Tag: release/1.5.59~3594 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=5dd0cde57b035069f89a1182a3b00b46e7e810ff;p=lilypond.git lilypond-0.1.52 --- 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 */ +