Sierra Toolkit  Version of the Day
sparseconfig.h
1 /*
2  * NOTE: This file is for internal use only.
3  * Do not use these #defines in your own program!
4  */
5 
6 /* Namespace for Google classes */
7 #define GOOGLE_NAMESPACE ::google
8 
9 /* the location of the header defining hash functions */
10 #define HASH_FUN_TR1H <tr1/functional>
11 
12 /* the namespace of the hash<> function */
13 #define HASH_NAMESPACE std::tr1
14 
15 /* Define to 1 if you have the <inttypes.h> header file. */
16 #define HAVE_INTTYPES_H 1
17 
18 /* Define to 1 if the system has the type `long long'. */
19 #define HAVE_LONG_LONG 1
20 
21 /* Define to 1 if you have the `memcpy' function. */
22 #define HAVE_MEMCPY 1
23 
24 /* Define to 1 if you have the <stdint.h> header file. */
25 #define HAVE_STDINT_H 1
26 
27 /* Define to 1 if you have the <sys/types.h> header file. */
28 #define HAVE_SYS_TYPES_H 1
29 
30 /* Define to 1 if the system has the type `uint16_t'. */
31 #define HAVE_UINT16_T 1
32 
33 /* Define to 1 if the system has the type `u_int16_t'. */
34 #define HAVE_U_INT16_T 1
35 
36 /* Define to 1 if the system has the type `__uint16'. */
37 /* #undef HAVE___UINT16 */
38 
39 /* The system-provided hash function including the namespace. */
40 #define SPARSEHASH_HASH HASH_NAMESPACE::hash
41 
42 /* the namespace where STL code like vector<> is defined */
43 #define STL_NAMESPACE std
44 
45 /* Stops putting the code inside the Google namespace */
46 #define _END_GOOGLE_NAMESPACE_ }
47 
48 /* Puts following code inside the Google namespace */
49 #define _START_GOOGLE_NAMESPACE_ namespace google {