]> git.donarmstrong.com Git - lilypond.git/blob - lily/translator.cc
release: 0.0.76
[lilypond.git] / lily / translator.cc
1 /*
2   Translator.cc -- implement Translator
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
8
9 #include "translator.hh"
10
11 Translator::Translator()
12 {
13     iterator_count_  = 0;
14 }
15
16 IMPLEMENT_STATIC_NAME(Translator);
17 IMPLEMENT_IS_TYPE_B(Translator);
18
19 bool
20 Translator::try_request(Request*)
21 {
22     return false;
23 }
24
25
26 void
27 Translator::print()const
28 {
29
30 }