aboutsummaryrefslogtreecommitdiff
path: root/libcutl/compiler/type-id.hxx
blob: d27597e5115b36471b0ecf819a6cbbe5dba8480a (plain)
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
45
// file      : libcutl/compiler/type-id.hxx
// license   : MIT; see accompanying LICENSE file

#ifndef LIBCUTL_COMPILER_TYPE_ID_HXX
#define LIBCUTL_COMPILER_TYPE_ID_HXX

#include <typeinfo> // std::type_info

namespace cutl
{
  namespace compiler
  {
    class type_id
    {
    public:
      template<typename X>
      type_id (X const volatile&);

      type_id (std::type_info const&);

    public:
      char const*
      name () const;

      friend bool
      operator== (type_id const&, type_id const&);

      friend bool
      operator!= (type_id const&, type_id const&);

      friend bool
      operator< (type_id const&, type_id const&);

    private:
      std::type_info const* ti_;
    };

    typedef type_id type_id_t;
  }
}

#include <libcutl/compiler/type-id.ixx>
#include <libcutl/compiler/type-id.txx>

#endif // LIBCUTL_COMPILER_TYPE_ID_HXX