summaryrefslogtreecommitdiff
path: root/trunk/CIAO/CCF/CCF/IDL2/Traversal/TypeId.hpp
blob: eb917dd69cbaef39dee0fea667bee7888e6c267a (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
// file      : CCF/IDL2/Traversal/TypeId.hpp
// author    : Boris Kolpackov <boris@dre.vanderbilt.edu>
// cvs-id    : $Id$

#ifndef CCF_IDL2_TRAVERSAL_TYPE_ID_HPP
#define CCF_IDL2_TRAVERSAL_TYPE_ID_HPP

#include "CCF/IDL2/Traversal/Elements.hpp"

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

namespace CCF
{
  namespace IDL2
  {
    namespace Traversal
    {
      // Typeid and typeprefix are two idiotic constructs of IDL.
      // They normally should not result in any directly generated
      // code so only minimal (and most generic) support is provided.
      //

      struct TypeId : Node<SemanticGraph::TypeId>
      {
      };

      struct TypePrefix : Node<SemanticGraph::TypePrefix>
      {
      };
    }
  }
}

#endif  // CCF_IDL2_TRAVERSAL_TYPE_ID_HPP