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

#include "Utility/Introspection/TypeId.hpp"

#include <ostream>

namespace Utility
{
  namespace Introspection
  {
    std::ostream&
    operator << (std::ostream& os, TypeId const& t)
    {
      return os << t.tid_->name ();
    }
  }
}
//$Id$