]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.9
authorfred <fred>
Thu, 31 Oct 1996 21:36:18 +0000 (21:36 +0000)
committerfred <fred>
Thu, 31 Oct 1996 21:36:18 +0000 (21:36 +0000)
hdr/symtable.hh [new file with mode: 0644]

diff --git a/hdr/symtable.hh b/hdr/symtable.hh
new file mode 100644 (file)
index 0000000..a1443a7
--- /dev/null
@@ -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<String, Symbol> {
+    Symbol lookup(String)const;
+};
+
+
+struct Symtables : private Assoc<String, Symtable*> {
+    void read(Text_db&) ;
+    Symtable* operator()(String s);
+
+};
+
+
+#endif
+