]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/mark-engraver.hh
release: 1.1.6
[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 Jan Nieuwenhuizen <janneke@gnu.org>
7 */
8
9
10 #ifndef MARK_ENGRAVER_HH
11 #define MARK_ENGRAVER_HH
12
13 #include "engraver.hh"
14
15 /**
16   */
17 class Mark_engraver : public Engraver 
18 {
19 public:
20   Mark_engraver ();
21
22   VIRTUAL_COPY_CONS(Translator);
23   
24
25 protected:
26   virtual bool do_try_music (Music *req_l);
27   virtual void do_process_requests ();
28   virtual void do_pre_move_processing ();
29
30 private:
31   Mark_req * mark_req_l_;
32   Script* script_p_;
33 };
34
35 #endif // MARK_ENGRAVER_HH