]> git.llucax.com Git - software/bife/bife++.git/blob - libbife/hash.h
- Moved libbife to it's own directory.
[software/bife/bife++.git] / libbife / 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 namespace bife {
10     /// String hash similar to high level languages (like perl, python or php).
11     typedef std::map<std::string, std::string> Hash;
12 }
13
14 #endif