From 7c12f48d6e11146f5bdb81e24b366a8d037cd787 Mon Sep 17 00:00:00 2001 From: fred Date: Thu, 31 Oct 1996 21:36:18 +0000 Subject: [PATCH] lilypond-0.0.9 --- hdr/symtable.hh | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 hdr/symtable.hh diff --git a/hdr/symtable.hh b/hdr/symtable.hh new file mode 100644 index 0000000000..a1443a7d3b --- /dev/null +++ b/hdr/symtable.hh @@ -0,0 +1,23 @@ +/* + lilypond, (c) 1996 Han-Wen Nienhuys +*/ +#ifndef SYMTABLE_HH +#define SYMTABLE_HH +#include "assoc.hh" +#include "string.hh" +#include "symbol.hh" + +struct Symtable : public Assoc { + Symbol lookup(String)const; +}; + + +struct Symtables : private Assoc { + void read(Text_db&) ; + Symtable* operator()(String s); + +}; + + +#endif + -- 2.39.5