blob: 015a2736aad5280fd2bf23c944016c62a5ca84ec (
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
|
// file : Utility/Introspection/Object.cpp
// author : Boris Kolpackov <boris@kolpackov.net>
// copyright : Copyright (c) 2002-2003 Boris Kolpackov
// license : http://kolpackov.net/license.html
#include "Utility/Introspection/Object.hpp"
namespace Utility
{
namespace Introspection
{
namespace
{
TypeInfo object_ (typeid (Object));
}
TypeInfo const& Object::
static_type_info () throw ()
{
return object_;
}
}
}
//$Id$
|