]> git.donarmstrong.com Git - lilypond.git/blob - lily/score-translator.cc
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / lily / score-translator.cc
1 /*
2   score-translator.cc -- implement 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 #include "score-translator.hh"
10 #include "moment.hh"
11
12 void
13 Score_translator::prepare (Moment)
14 {
15 }
16
17 SCM
18 Score_translator::get_output ()
19 {
20   return SCM_EOL;
21 }
22
23 void
24 Score_translator::finish ()
25 {
26 }
27
28 void
29 Score_translator::one_time_step ()
30 {
31 }