]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/breathing-sign.hh
release: 1.3.62
[lilypond.git] / lily / include / breathing-sign.hh
1 /*
2   breathing-sign.hh
3
4   Copyright (C) 1999 Michael Krause
5
6   written for the GNU LilyPond music typesetter
7
8 */
9
10 #ifndef BREATHING_SIGN_HH
11 #define BREATHING_SIGN_HH
12
13 #include "item.hh"
14 #include "parray.hh"
15
16 /*
17   breathing sign (apostrophe within staff, not the comma above staff
18   type)
19 */
20 class Breathing_sign : public Item
21 {
22 public:
23   static SCM brew_molecule (SCM);
24   
25   VIRTUAL_COPY_CONS(Score_element);
26   Breathing_sign (SCM s);
27 public:
28   SCM member_after_line_breaking ();
29   static SCM after_line_breaking (SCM);
30   SCM member_brew_molecule () const;
31 };
32
33 #endif // BREATHING_SIGN_HH