]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.75
authorfred <fred>
Sun, 24 Mar 2002 19:56:51 +0000 (19:56 +0000)
committerfred <fred>
Sun, 24 Mar 2002 19:56:51 +0000 (19:56 +0000)
lily/include/acceptor.hh [deleted file]

diff --git a/lily/include/acceptor.hh b/lily/include/acceptor.hh
deleted file mode 100644 (file)
index 872f374..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-/*
-  acceptor.hh -- declare Translator
-
-  source file of the GNU LilyPond music typesetter
-
-  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
-*/
-
-
-#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