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