aboutsummaryrefslogtreecommitdiff
path: root/cutl/compiler/type-id.hxx
blob: a23393b80c091157a8fe64a97ba615e62ac38144 (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
46
47
48
// file      : cutl/compiler/type-id.hxx
// copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC
// license   : MIT; see accompanying LICENSE file

#ifndef CUTL_COMPILER_TYPE_ID_HXX
#define CUTL_COMPILER_TYPE_ID_HXX

#include <typeinfo> // std::type_info

#include <cutl/details/export.hxx>

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 <cutl/compiler/type-id.ixx>
#include <cutl/compiler/type-id.txx>

#endif // CUTL_COMPILER_TYPE_ID_HXX