summaryrefslogtreecommitdiff
path: root/contrib/utility/Utility/Introspection/TypeId.tpp
blob: 7c3daef603c28e894a4771ef7decfa87cf77cf18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// file      : Utility/Introspection/TypeId.tpp
// author    : Boris Kolpackov <boris@kolpackov.net>
// copyright : Copyright (c) 2002-2003 Boris Kolpackov
// license   : http://kolpackov.net/license.html

namespace Utility
{
  namespace Introspection
  {
    template<typename T>
    inline TypeId::
    TypeId (T const& t)
        : tid_ (&typeid (t))
    {
    }
  }
}
//$Id$