]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/breathing-sign.hh
release: 1.3.3
[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
17 class Breathing_sign : public Item, public Staff_symbol_referencer {
18 public:
19   VIRTUAL_COPY_CONS(Score_element);
20   Breathing_sign ();
21
22   void set_vertical_position (Direction);
23   void set_direction (Direction d ) { dir_ =  d; }
24   Direction get_direction () const { return dir_; }
25
26
27 protected:
28   virtual void do_post_processing ();
29   virtual Molecule* do_brew_molecule_p () const;
30
31 private:
32   Direction dir_;
33 };
34
35 #endif // BREATHING_SIGN_HH