]> git.llucax.com Git - software/bife/bife++.git/blob - hash.h
Added initial Widget, Container and Fallback implementation.
[software/bife/bife++.git] / hash.h
1 // vim: set expandtab tabstop=4 shiftwidth=4:
2
3 #ifndef BIFE_HASH_H
4 #define BIFE_HASH_H
5
6 #include <string>
7 #include <map>
8
9 /// String hash similar to high level languages (like perl, python or php).
10 typedef std::map<std::string, std::string> Hash;
11
12 #endif