]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/rest.hh
release: 1.3.62
[lilypond.git] / lily / include / rest.hh
1 /*
2   rest.hh -- declare Rest
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 REST_HH
11 #define REST_HH
12
13 #include "rhythmic-head.hh"
14
15 /**
16    A pause.
17    
18    Properties
19
20    style -- string specifying glyph style
21  */
22 class  Rest : public Rhythmic_head
23 {
24 public:
25   SCM member_after_line_breaking ();
26   static SCM after_line_breaking (SCM);
27   SCM member_brew_molecule () const;
28
29    static SCM brew_molecule (SCM);
30   
31 Rest (SCM s);
32 };
33 #endif // REST_HH