]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/symtable.hh
partial: 1.1.24.jcn
[lilypond.git] / lily / include / symtable.hh
index 8c36ee6cbf5004d11bcbc98d4df1f7fbd7b23e53..b0f8a77bf6994d79508b773410d14cf9fd594041 100644 (file)
@@ -1,9 +1,9 @@
 /*
-  symtable.hh -- declare 
+  symtable.hh -- declare Symtable, Symtables
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+  (c)  1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 
 #include "atom.hh"
 
 struct  Symtable : public Dictionary<Atom> {
-    String id_str;
+  String id_str;
     
-    Atom lookup (String) const;
-    void print() const;
+  Atom lookup (String) const;
+  void print() const;
 };
 
 
-struct Symtables : private Dictionary<Symtable*> {
-    
-    Symtable* operator()(String s);
-    ~Symtables();
-    Symtables();
-    Symtables (Symtables const&);
-    void add (String, Symtable*);
-    void print() const;
+struct Symtables : private Dictionary<Symtable*>
+{
+  Symtables();
+  Symtables (Symtables const&);
+  ~Symtables();
+
+  Symtable* operator()(String s);
+  void add (String, Symtable*);
+  void print() const;
+
+  String font_name_;
 };