summaryrefslogtreecommitdiff
path: root/CIAO/CCF/CCF/IDL2/SemanticGraph/Fundamental.cpp.m4
blob: da1d8eca574f2704ec00ab14b46d10a62ca7e3c7 (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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
divert(-1)

# file      : CCF/IDL2/SemanticGraph/Fundamental.cpp.m4
# author    : Boris Kolpackov <boris@dre.vanderbilt.edu>
# cvs-id    : $Id$

include(`Fundamental.m4')

define(`fundamental_type',
  `fundamental_type_impl(`make_class_name(`$1')', `make_var_name(`$1')')')


define(`fundamental_type_impl', `

      // $1
      //
      //
      namespace
      {
        TypeInfo
        $2_init_ ()
        {
          TypeInfo ti (typeid ($1));
          ti.add_base (
            Access::PUBLIC, true, FundamentalType::static_type_info ());
          return ti;
        }

        TypeInfo $2_ ($2_init_ ());
      }

      TypeInfo const& $1::
      static_type_info () { return $2_; }')

divert(0)dnl
dnl
dnl
dnl
// file      : CCF/IDL2/SemanticGraph/Fundamental.cpp
// author    : Boris Kolpackov <boris@dre.vanderbilt.edu>
// cvs-id    : $Id$

// Note, that this file is automatically generated!
//

#include "CCF/IDL2/SemanticGraph/Fundamental.hpp"

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

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

        TypeInfo fundamental_type_ (fundamental_type_init_ ());
      }

      TypeInfo const& FundamentalType::
      static_type_info () { return fundamental_type_; }

      FundamentalType::
      ~FundamentalType ()
      {
      }
dnl
fundamental_type(`object')
fundamental_type(`value base')
fundamental_type(`any')
fundamental_type(`boolean')
fundamental_type(`char')
fundamental_type(`double')
fundamental_type(`float')
fundamental_type(`long')
fundamental_type(`long double')
fundamental_type(`long long')
fundamental_type(`octet')
fundamental_type(`short')
fundamental_type(`string')
fundamental_type(`unsigned long')
fundamental_type(`unsigned long long')
fundamental_type(`unsigned short')
fundamental_type(`void')
fundamental_type(`wchar')
fundamental_type(`wstring')
dnl
    }
  }
}