summaryrefslogtreecommitdiff
path: root/trunk/CIAO/CCF/CCF/CIDL/SemanticGraph/Elements.cpp
blob: 349f1854786fdf226873857bd5cd7b474bd6540c (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
// file      : CCF/CIDL/SemanticGraph/Elements.cpp
// author    : Boris Kolpackov <boris@dre.vanderbilt.edu>
// cvs-id    : $Id$

#include "CCF/CIDL/SemanticGraph/Elements.hpp"

namespace CCF
{
  namespace CIDL
  {
    namespace SemanticGraph
    {
      using Introspection::TypeInfo;
      using Introspection::Access;

      namespace
      {
        TypeInfo
        implements_init_ ()
        {
          TypeInfo ti (typeid (Implements));
          ti.add_base (Access::PUBLIC, true, Edge::static_type_info ());
          return ti;
        }

        TypeInfo implements_ (implements_init_ ());
      }

      TypeInfo const& Implements::
      static_type_info () { return implements_; }
    }
  }
}