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

#ifndef CCF_IDL2_SEMANTIC_ACTION_TYPE_ID_HPP
#define CCF_IDL2_SEMANTIC_ACTION_TYPE_ID_HPP

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

namespace CCF
{
  namespace IDL2
  {
    namespace SemanticAction
    {
      struct TypeId
      {
        virtual void
        begin (IdentifierPtr const& name, StringLiteralPtr const& id) = 0;

        virtual void
        end () = 0;
      };


      struct TypePrefix
      {
        virtual void
        begin (IdentifierPtr const& name, StringLiteralPtr const& prefix) = 0;

        virtual void
        end () = 0;
      };
    }
  }
}

#endif  // CCF_IDL2_SEMANTIC_ACTION_TYPE_ID_HPP