]> git.llucax.com Git - software/bife/bife++.git/blob - hash.h
Added an initial experimental implementation of BIFE in C++.
[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 using namespace std;
10
11 /// String hash similar to high level languages (like perl, python or php).
12 typedef map<string, string> Hash;
13
14 #endif