]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/dictionary-iter.hh
release: 1.3.19
[lilypond.git] / flower / include / dictionary-iter.hh
index b80bb149246bcad54ce56d3526b2eef61dc75821..eaf0317464c08529e3349c91dc15e71798b0121d 100644 (file)
@@ -1,27 +1,29 @@
 /*
-  dictionary-iter.hh -- declare 
+  dictionary-iter.hh -- declare Dictionary_iter
 
   source file of the Flower Library
 
-  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+  (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 
 #ifndef DICTIONARY_ITER_HH
 #define DICTIONARY_ITER_HH
 
-#include "string.hh"
-#include "assoc-iter.hh"
 #include "dictionary.hh"
+#include "hash-table-iter.hh"
+
 
 template<class V>
-class Dictionary_iter : public Assoc_iter<String, V>
+class Dictionary_iter : public Hash_table_iter<String,V>
 {
 public:
   Dictionary_iter (Dictionary<V> const &d)
-    : Assoc_iter<String, V> (d)
-  {
-  }
-};
+    : Hash_table_iter<String,V> (d)
+    {
 
-#endif // DICTIONARY_ITER_HH
+    }
+  
+  
+};
+#endif // Hash_table_ITER_HH