From: fred Date: Sun, 24 Mar 2002 19:56:51 +0000 (+0000) Subject: lilypond-0.0.75 X-Git-Tag: release/1.5.59~3938 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=284d08166982c8cc5ce3f9f0f140760d4f65f9f3;p=lilypond.git lilypond-0.0.75 --- diff --git a/lily/include/acceptor.hh b/lily/include/acceptor.hh deleted file mode 100644 index 872f374aee..0000000000 --- a/lily/include/acceptor.hh +++ /dev/null @@ -1,41 +0,0 @@ -/* - acceptor.hh -- declare Translator - - source file of the GNU LilyPond music typesetter - - (c) 1997 Han-Wen Nienhuys -*/ - - -#ifndef ACCEPTOR_HH -#define ACCEPTOR_HH -#error - -#include "string.hh" -#include "lily-proto.hh" -#include "interpreter.hh" -#include "virtual-methods.hh" - -class Translator { -public: - String id_str_; - - int iterator_count_; - - virtual Interpreter * interpreter_l() { return 0; } - - /// Score_engraver = 0, Staff_engravers = 1, etc) - virtual int depth_i()const=0; - virtual Translator *find_get_translator_l(String name, String id)=0; - virtual Translator *ancestor_l(int l=1)=0; - virtual ~Translator(){} - NAME_MEMBERS(); - Translator(); - virtual Translator *get_default_interpreter()=0; -}; - -class Interpreter : public virtual Translator { -public: - virtual bool interpret_request_b(Request*) { return false;} -}; -#endif // ACCEPTOR_HH