]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/interpreter.hh
release: 0.0.70pre
[lilypond.git] / lily / include / interpreter.hh
1 /*
2   interpretor.hh -- declare Interpreter
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
8
9
10 #ifndef INTERPRETER_HH
11 #define INTERPRETER_HH
12
13 #include "lily-proto.hh"
14
15 class Interpreter {
16 public:
17     int music_list_i_;
18     Interpreter();
19     virtual ~Interpreter();
20     virtual bool interpret_request_b(Request*) { return false;}
21 };
22
23 #endif // INTERPRETER_HH