]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/staff-symbol.hh
release: 1.3.55
[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--2000 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   Staff_symbol (SCM s);
25   
26 protected:
27   VIRTUAL_COPY_CONS(Score_element);
28   virtual Molecule do_brew_molecule() const;
29
30 };
31 #endif // STAFFSYM_HH