]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/request.hh
release: 1.1.43
[lilypond.git] / lily / include / request.hh
index 72134e8c334916475f80cb8083e2d3afb082cd2e..0c47398e5e1b9cfdaca21d23121e1fb8d5830e25 100644 (file)
@@ -43,6 +43,7 @@ public:
   VIRTUAL_COPY_CONS(Music);
 };
 
+#if 0
 /** Put a script above or below this ``note'' or bar. eg upbow, downbow. Why
   a request? These symbols may conflict with slurs and brackets, so
   this also a request */
@@ -59,7 +60,7 @@ public:
   ~Script_req();
   Script_req (Script_req const&);
 };
-
+#endif
 
 /**
   Requests to start or stop something.
@@ -68,8 +69,9 @@ public:
 class Span_req  : public virtual Request  {
 public:
   /// should the spanner start or stop, or is it unwanted?
-  Direction spantype_;
-
+  Direction span_dir_;
+  String span_type_str_;
+  
   Span_req();
 protected:
   virtual bool do_equal_b (Request*) const;
@@ -85,10 +87,4 @@ public:
   VIRTUAL_COPY_CONS(Music);
 };
 
-/** Start / stop a beam at this note */
-class Beam_req  : public Span_req  {
-public:
-  VIRTUAL_COPY_CONS(Music);
-};
-
 #endif