summaryrefslogtreecommitdiff
path: root/trunk/CIAO/CCF/CCF/IDL3/SemanticGraph/Home.cpp
blob: deb3dacffa09a2375685ab1e6c9610a939963024 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
// file      : CCF/IDL3/SemanticGraph/Home.cpp
// author    : Boris Kolpackov <boris@dre.vanderbilt.edu>
// cvs-id    : $Id$

#include "CCF/IDL3/SemanticGraph/Home.hpp"

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

      // Home
      //
      //
      namespace
      {
        TypeInfo
        home_init_ ()
        {
          TypeInfo ti (typeid (Home));
          ti.add_base (Access::PUBLIC, true, Type::static_type_info ());
          ti.add_base (Access::PUBLIC, true, Scope::static_type_info ());
          return ti;
        }

        TypeInfo home_ (home_init_ ());
      }

      TypeInfo const& Home::
      static_type_info () { return home_; }


      // HomeFactory
      //
      //
      namespace
      {
        TypeInfo
        home_factory_init_ ()
        {
          TypeInfo ti (typeid (HomeFactory));
          ti.add_base (
            Access::PUBLIC, true, TwoWayOperation::static_type_info ());
          return ti;
        }

        TypeInfo home_factory_ (home_factory_init_ ());
      }

      TypeInfo const& HomeFactory::
      static_type_info () { return home_factory_; }


      // HomeFinder
      //
      //
      namespace
      {
        TypeInfo
        home_finder_init_ ()
        {
          TypeInfo ti (typeid (HomeFinder));
          ti.add_base (
            Access::PUBLIC, true, TwoWayOperation::static_type_info ());
          return ti;
        }

        TypeInfo home_finder_ (home_finder_init_ ());
      }

      TypeInfo const& HomeFinder::
      static_type_info () { return home_finder_; }
    }
  }
}