]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.1.7
authorfred <fred>
Thu, 7 Aug 1997 20:21:22 +0000 (20:21 +0000)
committerfred <fred>
Thu, 7 Aug 1997 20:21:22 +0000 (20:21 +0000)
lily/include/axis-group-spanner.hh [new file with mode: 0644]

diff --git a/lily/include/axis-group-spanner.hh b/lily/include/axis-group-spanner.hh
new file mode 100644 (file)
index 0000000..2b7d6e2
--- /dev/null
@@ -0,0 +1,29 @@
+/*
+  axis-group-spanner.hh -- declare Axis_group_spanner
+
+  source file of the GNU LilyPond music typesetter
+
+  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+*/
+
+
+#ifndef SPAN_AXIS_GROUP_HH
+#define SPAN_AXIS_GROUP_HH
+
+#include "spanner.hh"
+#include "axis-group.hh"
+
+/** An element which groups a line in a certain direction. The most
+  useful example of this is the Vertical_group_spanner */
+class Axis_group_spanner : public Spanner, public virtual Axis_group_element
+{
+    void do_break_processing_if_unbroken();
+protected:
+    virtual void do_break_processing();
+    virtual void do_print()const;
+
+public:
+    DECLARE_MY_RUNTIME_TYPEINFO;
+};
+
+#endif // SPAN_AXIS_GROUP_HH