sgi.h
1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*******************************************************************/
/* */
/* File: sgi.h */
/* Author: Helmut Schmid */
/* Purpose: */
/* Created: Thu Sep 11 15:58:25 2008 */
/* Modified: Fri Sep 12 08:17:03 2008 (schmid) */
/* */
/*******************************************************************/
#ifndef _SGI_INCLUDED
#define _SGI_INCLUDED
#ifdef SGIext
#include <ext/hash_map>
#include <ext/hash_set>
using std::hash_map;
using std::hash_set;
using std::hash;
#else
#ifdef SGI__gnu_cxx
#include <ext/hash_map>
#include <ext/hash_set>
#else
#include <backward/hash_map>
#include <backward/hash_set>
#endif
using __gnu_cxx::hash_map;
using __gnu_cxx::hash_set;
using __gnu_cxx::hash;
#endif
#endif