]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.19
authorfred <fred>
Sun, 24 Mar 2002 19:26:50 +0000 (19:26 +0000)
committerfred <fred>
Sun, 24 Mar 2002 19:26:50 +0000 (19:26 +0000)
hdr/beam.hh
src/spanner.cc

index 60b5dedd710d6ad412a499f05706fb8136d63203..0032b67e172dd2711c90b1331ee65ecc628eb11c 100644 (file)
@@ -18,6 +18,8 @@ struct Beam: public Spanner {
     /// -1 below heads, +1 above heads.
     int dir;   
 
+    Rhythmic_grouping *group;
+
     /****************/
     
     virtual Interval width()const;    
@@ -31,8 +33,9 @@ struct Beam: public Spanner {
     void preprocess();
     Interval height()const;
     void print() const;
-    
+    void set_grouping(Rhythmic_grouping def, Rhythmic_grouping current);
     void set_stemlens();
+    ~Beam();
 private:
     Molecule stem_beams(Stem *here, Stem *next, Stem *prev);
     void solve_slope();
index 2d34f9e477aa409c86fd6a4bfb3b70b7cd10443d..a550227ea6958541863d796c26926156f986e3f3 100644 (file)
@@ -59,3 +59,7 @@ Spanner::print()const
     mtor << "}\n";
 #endif
 }
+Spanner::~Spanner()
+{
+    delete output;
+}