From 9dc4d03fd335779238f135d50a56806298d282d1 Mon Sep 17 00:00:00 2001 From: fred Date: Sun, 24 Mar 2002 19:45:37 +0000 Subject: [PATCH] lilypond-0.0.70pre --- lily/include/interpreter.hh | 11 ++++++++--- lily/interpreter.cc | 20 ++++++++++++++++++++ 2 files changed, 28 insertions(+), 3 deletions(-) create mode 100644 lily/interpreter.cc 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_ ); +} -- 2.39.5