#include <cstring>
#include <string>
#include <memory>
#include <tr1/unordered_map>
Go to the source code of this file.
Classes | |
struct | EqualStr |
String comparison structure for HashMap. More... | |
struct | EqualInteger |
Integer comparison structure for HashMap. More... | |
Defines | |
#define | GLIBC_NAMESPACE std::tr1 |
#define | HashMap std::tr1::unordered_map |
#define | Hash std::tr1::hash |
#define | StringHasher Hash<std::string> |
Typedefs | |
typedef std::tr1::unordered_map < std::string, int, std::tr1::hash< std::string > > | StringIntMap |
A typedef for a hash map whose key is std::string and contains integers. |
hash_map< std::string, int, StringHasher > StringIntMap |