summaryrefslogtreecommitdiff
path: root/TAO/CIAO/CCF/CCF/IDL3/IDL3_SyntaxTreeFwd.hpp
blob: d581ad0daa53d6c1eadecc4d06e87c679e297ee7 (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
// $Id$
#ifndef CCF_IDL3_SYNTAX_TREE_FWD_HPP
#define CCF_IDL3_SYNTAX_TREE_FWD_HPP

#include "MSVC_Pragmas.hpp"

#include "CCF/IDL2/IDL2_SyntaxTreeFwd.hpp"

namespace IDL3
{
  namespace SyntaxTree
  {
    // Import all nodes of IDL2
    using namespace IDL2::SyntaxTree;

    class ComponentDecl;
    typedef
    StrictPtr<ComponentDecl>
    ComponentDeclPtr;

    class ComponentDef;
    typedef
    StrictPtr<ComponentDef>
    ComponentDefPtr;

    class ProvidesDecl;
    typedef
    StrictPtr<ProvidesDecl>
    ProvidesDeclPtr;

    class UsesDecl;
    typedef
    StrictPtr<UsesDecl>
    UsesDeclPtr;

    class PublishesDecl;
    typedef
    StrictPtr<PublishesDecl>
    PublishesDeclPtr;

    class EmitsDecl;
    typedef
    StrictPtr<EmitsDecl>
    EmitsDeclPtr;

    class ConsumesDecl;
    typedef
    StrictPtr<ConsumesDecl>
    ConsumesDeclPtr;

    class HomeDef;
    typedef
    StrictPtr<HomeDef>
    HomeDefPtr;

    class HomeFactoryDecl;
    typedef
    StrictPtr<HomeFactoryDecl>
    HomeFactoryDeclPtr;

    //@@ should it be here or in separate file?
    class ConcreteEventTypeDef;
    typedef
    StrictPtr<ConcreteEventTypeDef>
    ConcreteEventTypeDefPtr;
  }
}

#endif // CCF_IDL3_SYNTAX_TREE_FWD_HPP