src/internet-stack/sgi-hashmap.h
author Craig Dowell <craigdo@ee.washington.edu>
Wed, 03 Sep 2008 11:54:46 -0700
changeset 3594 8feda39dff1f
parent 3365 6409d2460601
permissions -rw-r--r--
Added tag ns-3.2-RC1 for changeset dfd634417b8d

/* This code snippet was ripped out of the gcc 
 * documentation and slightly modified to work
 * with gcc 4.x
 */
#ifndef SGI_HASHMAP_H
#define SGI_HASHMAP_H

/* To use gcc extensions.
 */
#ifdef __GNUC__
  #if __GNUC__ < 3
     #include <hash_map.h>
namespace sgi { using ::hash_map; }; // inherit globals
  #else 
     #if __GNUC__ < 4
       #include <ext/hash_map>
       #if __GNUC_MINOR__ == 0
namespace sgi = std;         // GCC 3.0
       #else
namespace sgi = ::__gnu_cxx;       // GCC 3.1 and later
       #endif
     #else  // gcc 4.x and later
       #if __GNUC_MINOR__ < 3
       #include <ext/hash_map>
namespace sgi = ::__gnu_cxx;
       #else
#undef __DEPRECATED
       #include <backward/hash_map>
namespace sgi = ::__gnu_cxx;
       #endif
     #endif
  #endif
#else      // ...  there are other compilers, right?
namespace sgi = std;
#endif


#endif /* SGI_HASHMAP_H */