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

#ifndef CCF_IDL2_SEMANTIC_GRAPH_TYPE_ID_HPP
#define CCF_IDL2_SEMANTIC_GRAPH_TYPE_ID_HPP

#include "CCF/IDL2/SemanticGraph/Elements.hpp"
#include "CCF/IDL2/SemanticGraph/Literals.hpp"


namespace CCF
{
  namespace IDL2
  {
    namespace SemanticGraph
    {
      //
      //
      //
      class TypeId : public virtual Nameable
      {
      public:
        //@@ declaration is a bad name.
        //
        ScopedName
        declaration () const
        {
          return name_;
        }

        StringLiteral
        id () const
        {
          return id_;
        }

        static Introspection::TypeInfo const&
        static_type_info ();

      protected:
        friend class Graph<Node, Edge>;

        TypeId (Path const& path,
                unsigned long line,
                ScopedName const& name,
                StringLiteral const& id)
            : Node (path, line),
              name_ (name),
              id_ (id)
        {
          type_info (static_type_info ());
        }

      private:
        ScopedName name_;
        StringLiteral id_;
      };


      //
      //
      //
      class TypePrefix : public virtual Nameable
      {
      public:
        ScopedName
        declaration () const
        {
          return name_;
        }

        StringLiteral
        prefix () const
        {
          return prefix_;
        }

        static Introspection::TypeInfo const&
        static_type_info ();

      protected:
        friend class Graph<Node, Edge>;

        TypePrefix (Path const& path,
                    unsigned long line,
                    ScopedName const& name,
                    StringLiteral const& prefix)
            : Node (path, line),
              name_ (name),
              prefix_ (prefix)
        {
          type_info (static_type_info ());
        }

      private:
        ScopedName name_;
        StringLiteral prefix_;
      };
    }
  }
}

#endif  // CCF_IDL2_SEMANTIC_GRAPH_TYPE_ID_HPP