]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.1.52
authorfred <fred>
Sun, 24 Mar 2002 20:02:51 +0000 (20:02 +0000)
committerfred <fred>
Sun, 24 Mar 2002 20:02:51 +0000 (20:02 +0000)
bin/genheader.in
lily/include/single-malt-grouping-item.hh [new file with mode: 0644]

index 57f0e9fb8f93176193f3433af8c4ef2fc17b552c..9f16663bf7e49ed6c8c31e192894f3a47350346c 100644 (file)
@@ -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 (file)
index 0000000..4b74897
--- /dev/null
@@ -0,0 +1,35 @@
+/*   
+  single-malt-grouping-item.hh -- declare 
+  
+  source file of the GNU LilyPond music typesetter
+  
+  (c) 1997 Han-Wen Nienhuys <hanwen@cs.ruu.nl>
+  
+ */
+
+#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> 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 */
+