]> git.donarmstrong.com Git - lilypond.git/blob - flower/include/dictionary.hh
release: 0.1.61
[lilypond.git] / flower / include / dictionary.hh
1 /*
2   dictionary.hh -- declare Dictionary
3
4   source file of the Flower Library
5
6   (c)  1997--1998 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
8
9
10 #ifndef DICTIONARY_HH
11 #define DICTIONARY_HH
12
13 #include "string.hh"
14 #include "assoc.hh"
15
16 /**
17   UGH:  write a String_hash template, 
18
19   SEE:
20   
21        #include <search.h>
22
23        ENTRY *hsearch(ENTRY item, ACTION action);
24
25        int     hcreate (unsigned nel);
26
27        void    hdestroy (void);
28
29   (should be frobnified to allow multiple hashes)
30  */
31 template<class T>
32 class Dictionary : public Assoc<String, T>
33 {
34 public:
35   
36 };
37
38 #endif // DICTIONARY_HH