]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/mark-engraver.hh
release: 1.1.30
[lilypond.git] / lily / include / mark-engraver.hh
1 /*
2   mark-engraver.hh -- declare Mark_engraver
3
4   source file of the GNU LilyPond music typesetter
5
6  (c) 1998--1999 Jan Nieuwenhuizen <janneke@gnu.org>
7 */
8
9
10 #ifndef MARK_ENGRAVER_HH
11 #define MARK_ENGRAVER_HH
12
13 #include "bar-script-engraver.hh"
14
15 /**Print rehearsal marks.
16   */
17 class Mark_engraver : public Bar_script_engraver 
18 {
19 public:
20   Mark_engraver ();
21   VIRTUAL_COPY_CONS(Translator);
22 protected:
23   virtual bool do_try_music (Music *req_l);
24   virtual void do_process_requests ();
25   virtual void do_post_move_processing ();
26 private:
27   Mark_req * mark_req_l_;
28 };
29
30 #endif // MARK_ENGRAVER_HH