]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.15
authorfred <fred>
Tue, 10 Dec 1996 13:42:01 +0000 (13:42 +0000)
committerfred <fred>
Tue, 10 Dec 1996 13:42:01 +0000 (13:42 +0000)
hdr/lookup.hh
hdr/symtable.hh

index 90a27fd60fa3fd7156c45714f99b100aacc6ec7d..7e59dac0fa1fa7ee9fa07c7bb6aedce22e22da24 100644 (file)
 
 struct Lookup {
     Symtables *symtables_;
-    
+    String texsetting;
     /****************/
+    void add(String, Symtable*);
+
     Real internote();
-    void parse (Text_db&t);
+
     Symbol linestaff(int n, Real w);
 
     Symbol beam_element(int,int,Real=0);
@@ -44,6 +46,7 @@ struct Lookup {
 
 
     Lookup();
+    Lookup(Lookup const &);
     ~Lookup();
 };
 
index a1443a7d3b1b4b15a4edc0e7fa9dc2494ffebb58..b4217c12b8a59996dfe8aab96fb7d9490505ae84 100644 (file)
@@ -9,13 +9,17 @@
 
 struct  Symtable : public Assoc<String, Symbol> {
     Symbol lookup(String)const;
+    
 };
 
 
 struct Symtables : private Assoc<String, Symtable*> {
-    void read(Text_db&) ;
+    
     Symtable* operator()(String s);
-
+    ~Symtables();
+    Symtables();
+    Symtables(Symtables const&);
+    Assoc<String, Symtable*>::add;
 };