]> git.donarmstrong.com Git - lilypond.git/blob - flower/include/dictionary-iter.hh
patch::: 1.2.0.jcn1
[lilypond.git] / flower / include / dictionary-iter.hh
1 /*
2   dictionary-iter.hh -- declare Dictionary_iter
3
4   source file of the Flower Library
5
6   (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9
10 #ifndef DICTIONARY_ITER_HH
11 #define DICTIONARY_ITER_HH
12
13 #include "dictionary.hh"
14 #include "hash-table-iter.hh"
15
16
17 template<class V>
18 class Dictionary_iter : public Hash_table_iter<String,V>
19 {
20 public:
21   Dictionary_iter (Dictionary<V> const &d)
22     : Hash_table_iter<String,V> (d)
23     {
24
25     }
26   
27   
28 };
29 #endif // Hash_table_ITER_HH