]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/score-translator.hh
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / lily / include / score-translator.hh
1 /*
2   score-translator.hh -- declare Score_translator
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2004--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #ifndef SCORE_TRANSLATOR_HH
10 #define SCORE_TRANSLATOR_HH
11
12 #include "translator-group.hh"
13
14 class Score_translator : public virtual Translator_group
15 {
16   friend class Score_context;
17 protected:
18   virtual SCM get_output ();
19   virtual void prepare (Moment);
20   virtual void finish ();
21   virtual void one_time_step ();
22 };
23
24 #endif /* SCORE_TRANSLATOR_HH */
25