From: fred Date: Sun, 24 Mar 2002 19:45:37 +0000 (+0000) Subject: lilypond-0.0.70pre X-Git-Tag: release/1.5.59~4597 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=9dc4d03fd335779238f135d50a56806298d282d1;p=lilypond.git lilypond-0.0.70pre --- diff --git a/lily/include/interpreter.hh b/lily/include/interpreter.hh index 1c0703f16b..92541c7211 100644 --- a/lily/include/interpreter.hh +++ b/lily/include/interpreter.hh @@ -7,12 +7,17 @@ */ -#ifndef Interpreter_HH -#define Interpreter_HH +#ifndef INTERPRETER_HH +#define INTERPRETER_HH + +#include "lily-proto.hh" class Interpreter { public: + int music_list_i_; + Interpreter(); + virtual ~Interpreter(); virtual bool interpret_request_b(Request*) { return false;} }; -#endif // Interpreter_HH +#endif // INTERPRETER_HH diff --git a/lily/interpreter.cc b/lily/interpreter.cc new file mode 100644 index 0000000000..15f400bfc8 --- /dev/null +++ b/lily/interpreter.cc @@ -0,0 +1,20 @@ +/* + interpreter.cc -- implement Interpreter + + source file of the GNU LilyPond music typesetter + + (c) 1997 Han-Wen Nienhuys +*/ + +#include +#include "interpreter.hh" + +Interpreter::Interpreter() +{ + music_list_i_ =0; +} + +Interpreter::~Interpreter() +{ +// assert(!music_list_i_ ); +}