]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/slur-configuration.hh
Run `make grand-replace'.
[lilypond.git] / lily / include / slur-configuration.hh
index b1b9f9a6e55033009f86c9f6b63a63252a2ce5d7..c798d38bcad89617faa7d441d7a6abbb8b4d2fe8 100644 (file)
@@ -3,15 +3,26 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 2004--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
+  (c) 2004--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
 */
 
 #ifndef SLUR_CONFIGURATION_HH
 #define SLUR_CONFIGURATION_HH
 
 #include "bezier.hh"
+#include "lily-proto.hh"
 #include "std-vector.hh"
-#include "main.hh"
+
+
+enum Configuration_tag
+  {
+    SLUR_STEM = 0x01,
+    SLUR_HEAD = 0x02,
+    SLUR_FREE = 0x04,
+    SLUR_FREE_HEAD = 0x08,
+    SLUR_FREE_STEM = 0x10,
+    SLUR_STEM_TIP = 0x10,
+  };
 
 class Slur_configuration
 {
@@ -22,7 +33,7 @@ public:
   Drul_array<Offset> attachment_;
   Bezier curve_;
   Real height_;
-
+  unsigned tags_;
   int index_;
 
   Slur_configuration ();