hash_map.h

Go to the documentation of this file.
00001 /* Get hash_map, which is an extension to STL.
00002    In gcc before 3.2 we're fine with the #include; 3.3 and later
00003    put hash_map into the __gnu_cxx namespace. */
00004 
00005 #ifdef HAVE_CONFIG_H
00006 # include <tumble-conf.h>
00007 #endif
00008 
00009 #ifdef HAVE_HASH_MAP
00010 # include <hash_map>
00011 # define hashers std
00012 #elif HAVE_GNU_HASH_MAP
00013 # include <ext/hash_map>
00014 # define hashers __gnu_cxx
00015 #else
00016 # error "no hash_map found!"
00017 #endif

Generated on Mon May 24 09:53:30 2010 for TUMBLE by  doxygen 1.5.2