summaryrefslogtreecommitdiff
path: root/modules/CIAO/CCF/CCF/CompilerElements/Introspection.cpp
blob: 9e625e0272a8534bb7d5b28c1f5a792bd8662a82 (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
// file      : CCF/CompilerElements/Introspection.cpp
// author    : Boris Kolpackov <boris@dre.vanderbilt.edu>
// cvs-id    : $Id$

//
// This is a hack to avoid link dependency on Utility library.
//

#include "Utility/Introspection/Object.hpp"

namespace Utility
{
  namespace Introspection
  {
    namespace
    {
      TypeInfo object_ (typeid (Object));
    }

    TypeInfo const& Object::
    static_type_info () throw ()
    {
      return object_;
    }
  }
}