]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-1.3.95
authorfred <fred>
Tue, 26 Mar 2002 23:57:03 +0000 (23:57 +0000)
committerfred <fred>
Tue, 26 Mar 2002 23:57:03 +0000 (23:57 +0000)
lily/include/arpeggio.hh [new file with mode: 0644]
lily/include/span-arpeggio.hh [new file with mode: 0644]
lily/span-bar.cc

diff --git a/lily/include/arpeggio.hh b/lily/include/arpeggio.hh
new file mode 100644 (file)
index 0000000..317027d
--- /dev/null
@@ -0,0 +1,23 @@
+/*
+  arpegio.hh -- declare Arpeggio
+  
+  source file of the GNU LilyPond music typesetter
+
+  (c) 2000 Jan Nieuwenhuizen <janneke@gnu.org>
+*/
+
+#ifndef ARPEGGIO_HH
+#define ARPEGGIO_HH
+
+#include "lily-guile.hh"
+#include "lily-proto.hh"
+
+class Arpeggio
+{
+public:
+  DECLARE_SCHEME_CALLBACK (brew_molecule, (SCM));
+  static bool has_interface (Score_element*);
+};
+
+#endif /* ARPEGGIO_HH */
+
diff --git a/lily/include/span-arpeggio.hh b/lily/include/span-arpeggio.hh
new file mode 100644 (file)
index 0000000..a494fbe
--- /dev/null
@@ -0,0 +1,24 @@
+/*
+  span-arpegio.hh -- declare Span_arpeggio
+  
+  source file of the GNU LilyPond music typesetter
+
+  (c) 2000 Jan Nieuwenhuizen <janneke@gnu.org>
+*/
+
+#ifndef SPAN_ARPEGGIO_HH
+#define SPAN_ARPEGGIO_HH
+
+#include "lily-guile.hh"
+#include "lily-proto.hh"
+#include "interval.hh"
+
+class Span_arpeggio
+{
+public:
+  DECLARE_SCHEME_CALLBACK (brew_molecule, (SCM));
+  static bool has_interface (Score_element*);
+};
+
+#endif /* SPAN_ARPEGGIO_HH */
+
index 6f04809e745da3d2c8fdb874cdccd2f27b99c643..189b54ff999e7cb2943a5ed74b4914dd54fa0670 100644 (file)
@@ -145,6 +145,7 @@ Span_bar::get_bar_size (SCM smob)
     }
   return gh_double2scm (iv.length ());
 }
+
 void
 Span_bar::set_interface (Score_element *me)
 {