]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/staff-margin-engraver.hh
release: 1.1.6
[lilypond.git] / lily / include / staff-margin-engraver.hh
1 /*
2   staff-margin-engraver.hh -- declare Staff_margin_engraver
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1998 Jan Nieuwenhuizen <janneke@gnu.org>
7 */
8
9
10 #ifndef STAFF_MARGIN_ENGRAVER_HH
11 #define STAFF_MARGIN_ENGRAVER_HH
12
13 #include "engraver.hh"
14
15 /**
16   put (instrument) text to left of line
17  */
18 class Staff_margin_engraver : public Engraver 
19 {
20 public:
21   VIRTUAL_COPY_CONS(Translator);
22   
23
24   Staff_margin_engraver ();
25
26 protected:
27   void acknowledge_element (Score_element_info);
28   void do_pre_move_processing ();
29
30 private:
31   Script * script_p_;
32 };
33
34 #endif // STAFF_MARGIN_ENGRAVER_HH