blob: cd7e13ed1160a4a7701ccd8a396178ec7e1375a3 [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001// -*- C++ -*-
2//===-------------------------- typeindex ---------------------------------===//
3//
Howard Hinnantf5256e12010-05-11 21:36:01 +00004// The LLVM Compiler Infrastructure
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005//
6// This file is distributed under the University of Illinois Open Source
7// License. See LICENSE.TXT for details.
8//
9//===----------------------------------------------------------------------===//
10
11#ifndef _LIBCPP_TYPEINDEX
12#define _LIBCPP_TYPEINDEX
13
14/*
15
16 typeindex synopsis
17
18namespace std
19{
20
21class type_index
22{
23public:
24 type_index(const type_info& rhs);
25
26 bool operator==(const type_index& rhs) const;
27 bool operator!=(const type_index& rhs) const;
28 bool operator< (const type_index& rhs) const;
29 bool operator<=(const type_index& rhs) const;
30 bool operator> (const type_index& rhs) const;
31 bool operator>=(const type_index& rhs) const;
32
33 size_t hash_code() const;
34 const char* name() const;
35};
36
37template <>
38struct hash<type_index>
39 : public unary_function<type_index, size_t>
40{
41 size_t operator()(type_index index) const;
42};
43
44} // std
45
46*/
47
48#include <__config>
49#include <typeinfo>
50#include <__functional_base>
51
52#pragma GCC system_header
53
54_LIBCPP_BEGIN_NAMESPACE_STD
55
56class type_index
57{
58 const type_info* __t_;
59public:
60 type_index(const type_info& __y) : __t_(&__y) {}
61
62 bool operator==(const type_index& __y) const {return *__t_ == *__y.__t_;}
63 bool operator!=(const type_index& __y) const {return *__t_ != *__y.__t_;}
64 bool operator< (const type_index& __y) const {return __t_->before(*__y.__t_);}
65 bool operator<=(const type_index& __y) const {return !__y.__t_->before(*__t_);}
66 bool operator> (const type_index& __y) const {return __y.__t_->before(*__t_);}
67 bool operator>=(const type_index& __y) const {return !__t_->before(*__y.__t_);}
68
69 size_t hash_code() const {return __t_->hash_code();}
70 const char* name() const {return __t_->name();}
71};
72
73template <class _Tp> struct hash;
74
75template <>
76struct hash<type_index>
77 : public unary_function<type_index, size_t>
78{
79 size_t operator()(type_index __index) const {return __index.hash_code();}
80};
81
82_LIBCPP_END_NAMESPACE_STD
83
84#endif // _LIBCPP_TYPEINDEX