summaryrefslogtreecommitdiff
path: root/modules/CIAO/CCF/CCF/IDL2/SemanticGraph/Sequence.cpp
blob: 5c95be2c67cc5fe30e382961e9da432ee9453b3d (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
// file      : CCF/IDL2/SemanticGraph/Sequence.cpp
// author    : Boris Kolpackov <boris@dre.vanderbilt.edu>
// cvs-id    : $Id$

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

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

      // Sequence
      //
      //
      namespace
      {
        TypeInfo
        sequence_init_ ()
        {
          TypeInfo ti (typeid (Sequence));
          ti.add_base (
            Access::PUBLIC, true, Specialization::static_type_info ());
          return ti;
        }

        TypeInfo sequence_ (sequence_init_ ());
      }

      TypeInfo const& Sequence::
      static_type_info () { return sequence_; }

      Sequence::
      ~Sequence ()
      {
      }


      // UnboundedSequence
      //
      //
      namespace
      {
        TypeInfo
        unbounded_sequence_init_ ()
        {
          TypeInfo ti (typeid (UnboundedSequence));
          ti.add_base (Access::PUBLIC, true, Sequence::static_type_info ());
          return ti;
        }

        TypeInfo unbounded_sequence_ (unbounded_sequence_init_ ());
      }

      TypeInfo const& UnboundedSequence::
      static_type_info () { return unbounded_sequence_; }


      // BoundedSequence
      //
      //
      namespace
      {
        TypeInfo
        bounded_sequence_init_ ()
        {
          TypeInfo ti (typeid (BoundedSequence));
          ti.add_base (Access::PUBLIC, true, Sequence::static_type_info ());
          return ti;
        }

        TypeInfo bounded_sequence_ (bounded_sequence_init_ ());
      }

      TypeInfo const& BoundedSequence::
      static_type_info () { return bounded_sequence_; }
    }
  }
}