]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/breathing-sign.hh
release: 1.3.4
[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 "staff-symbol-referencer.hh"
15 #include "parray.hh"
16 #include "directional-element.hh"
17
18 class Breathing_sign : public Item,
19                        public Staff_symbol_referencer,
20                        public Directional_element
21 {
22 public:
23   VIRTUAL_COPY_CONS(Score_element);
24   Breathing_sign ();
25
26   void set_vertical_position (Direction);
27
28
29 protected:
30   virtual void do_post_processing ();
31   virtual Molecule* do_brew_molecule_p () const;
32 };
33
34
35
36 #endif // BREATHING_SIGN_HH