]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/stem-grav.hh
patch::: 0.1.12.jcn2: kliener pats
[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   Abbreviation_req* abbrev_req_l_;
24 protected:
25   virtual void acknowledge_element (Score_elem_info);
26   virtual void do_pre_move_processing ();
27   virtual bool do_try_request (Request*);
28   virtual void set_feature (Feature dir_i_);
29
30 public:
31   Stem_engraver();
32   DECLARE_MY_RUNTIME_TYPEINFO;
33 };
34
35 #endif // STEM_GRAV_HH