]> git.donarmstrong.com Git - lilypond.git/blob - lily/span-score-bar.cc
c6a42439078f14b561668ecbde615d5716f992a5
[lilypond.git] / lily / span-score-bar.cc
1 /*
2   span-score-bar.cc -- implement Span_score_bar
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #include "span-score-bar.hh"
10 #include "atom.hh"
11 #include "paper-def.hh"
12 #include "lookup.hh"
13 #include "main.hh"
14
15 Span_score_bar::Span_score_bar()
16 {
17 }
18
19 void
20 Score_bar::do_pre_processing ()
21 {
22   type_str_ = "|";
23   if (break_status_dir() != RIGHT) 
24     {
25       set_empty (true);
26       transparent_b_ = true;
27     }
28 }
29
30 void
31 Span_score_bar::do_pre_processing()
32 {
33   /*
34     duh.  The order of these two is subtle. 
35    */
36   Score_bar::do_pre_processing ();
37   //  Span_bar::do_pre_processing();
38 }
39
40
41
42