Switch to unified view
a/src/utils/smallut.h | b/src/utils/smallut.h | ||
---|---|---|---|
... |
... |
||
18 | #define _SMALLUT_H_INCLUDED_ |
18 | #define _SMALLUT_H_INCLUDED_ |
19 | 19 | ||
20 | #include <stdlib.h> |
20 | #include <stdlib.h> |
21 | 21 | ||
22 | #include <string> |
22 | #include <string> |
23 | #include <list> |
||
24 | #include <vector> |
23 | #include <vector> |
25 | #include <map> |
24 | #include <map> |
26 | #include <set> |
25 | #include <set> |
27 | 26 | ||
28 | #ifndef NO_NAMESPACES |
27 | #ifndef NO_NAMESPACES |
29 | using std::string; |
28 | using std::string; |
30 | using std::list; |
||
31 | using std::vector; |
29 | using std::vector; |
32 | using std::map; |
30 | using std::map; |
33 | using std::set; |
31 | using std::set; |
34 | #endif /* NO_NAMESPACES */ |
32 | #endif /* NO_NAMESPACES */ |
35 | 33 |