]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/stem-grav.hh
release: 0.1.11
[lilypond.git] / lily / include / stem-grav.hh
1 /*
2   stem-grav.hh -- declare Stem_engraver
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
8
9
10 #ifndef STEM_GRAV_HH
11 #define STEM_GRAV_HH
12
13 #include "engraver.hh"
14
15 /**
16   Make stems upon receiving noteheads.
17  */
18 class Stem_engraver : public Engraver
19 {
20   Direction dir_;
21   Stem *stem_p_;
22   Rhythmic_req *rhythmic_req_l_;
23 protected:
24   virtual void acknowledge_element (Score_elem_info);
25   virtual void do_pre_move_processing ();
26   virtual void set_feature (Feature dir_i_);
27
28 public:
29   Stem_engraver();
30   DECLARE_MY_RUNTIME_TYPEINFO;
31 };
32
33 #endif // STEM_GRAV_HH