*/
-#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
--- /dev/null
+/*
+ interpreter.cc -- implement Interpreter
+
+ source file of the GNU LilyPond music typesetter
+
+ (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+*/
+
+#include <assert.h>
+#include "interpreter.hh"
+
+Interpreter::Interpreter()
+{
+ music_list_i_ =0;
+}
+
+Interpreter::~Interpreter()
+{
+// assert(!music_list_i_ );
+}