]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/staff-symbol.hh
release: 1.3.16
[lilypond.git] / lily / include / staff-symbol.hh
1 /*
2   staffsym.hh -- declare Staff_symbol
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9
10 #ifndef STAFFSYM_HH
11 #define STAFFSYM_HH
12 #include "spanner.hh"
13
14 /**
15   This spanner draws the lines of a pstaff.
16   The bottom line is position 0.
17   */
18 class Staff_symbol : public Spanner
19 {
20 public:
21   Real staff_space () const;
22   int steps_i() const;
23   int line_count () const;
24 protected:
25   VIRTUAL_COPY_CONS(Score_element);
26   virtual Molecule* do_brew_molecule_p() const;
27 };
28 #endif // STAFFSYM_HH