From 02ba27e3472f3e14a980a0da22fdf197b09c165b Mon Sep 17 00:00:00 2001 From: fred Date: Sun, 24 Mar 2002 19:27:38 +0000 Subject: [PATCH] lilypond-0.0.22 --- hdr/beam.hh | 3 --- hdr/pcol.hh | 13 ++++++++----- hdr/pstaff.hh | 6 ++++-- 3 files changed, 12 insertions(+), 10 deletions(-) diff --git a/hdr/beam.hh b/hdr/beam.hh index 2fd78100c3..912f47dc72 100644 --- a/hdr/beam.hh +++ b/hdr/beam.hh @@ -17,9 +17,6 @@ struct Beam: public Directional_spanner { Real left_pos; /// dir: -1 below heads, +1 above heads. - - Rhythmic_grouping *group; - /****************/ virtual Interval width()const; diff --git a/hdr/pcol.hh b/hdr/pcol.hh index 7da7c02cb2..a0f2a87624 100644 --- a/hdr/pcol.hh +++ b/hdr/pcol.hh @@ -13,32 +13,33 @@ struct PCol { /// prebreak is put before end of line. - PCol *prebreak; + PCol *prebreak_p_; /** if broken here, then (*this) column is discarded, and prebreak is put at end of line, owned by Col */ /// postbreak at beginning of the new line - PCol *postbreak; + PCol *postbreak_p_; /** \See{prebreak} */ - PCol *daddy; + PCol *daddy_l_; /** if this column is pre or postbreak, then this field points to the parent. */ /// if lines are broken then this column is in #line# - const Line_of_score *line; + const Line_of_score *line_l_; /// if lines are broken then this column x-coord #hpos# Real hpos; - PScore * pscore_; + PScore * pscore_l_; /****************/ /// which one (left =0) int rank() const; + /// does this column have items, does it have spacings attached? bool used() const; @@ -62,6 +63,8 @@ struct PCol { void OK() const; void set_breakable(); void print()const; +private: + PCol(PCol const&){} }; /** This is a class to address items vertically. It contains the data for: diff --git a/hdr/pstaff.hh b/hdr/pstaff.hh index 6d0bdcf341..78a68fb306 100644 --- a/hdr/pstaff.hh +++ b/hdr/pstaff.hh @@ -7,8 +7,8 @@ /// items grouped horizontally struct PStaff { - Molecule * stafsym; - PScore * pscore_; + Molecule * stafsym_p_; + PScore * pscore_l_; PointerList spans; @@ -19,6 +19,8 @@ struct PStaff { void add(Item*i); PStaff(PScore*); virtual ~PStaff(); +private: + PStaff(PStaff const&); }; #endif -- 2.39.5