]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/system-start-delimiter.hh
release: 1.3.56
[lilypond.git] / lily / include / system-start-delimiter.hh
1 /*   
2   System-start-delimiter.hh -- declare System_start_delimiter
3      
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #ifndef SYSTEM_START_DELIMITER_HH
11 #define SYSTEM_START_DELIMITER_HH
12
13 #include "spanner.hh"
14
15 /*
16   Braces/brackets across staffs.
17  */
18 class System_start_delimiter : public Spanner
19 {
20 public:
21   System_start_delimiter (SCM);
22    static SCM scheme_molecule (SCM);
23   
24 VIRTUAL_COPY_CONS (Score_element);
25 protected:
26   virtual void after_line_breaking();
27   virtual  Molecule do_brew_molecule () const;
28   Molecule staff_bracket (Real) const;
29   Molecule staff_brace (Real) const;
30   Molecule simple_bar (Real) const;
31 };
32
33 #endif /* SYSTEM_START_DELIMITER_HH */
34