summaryrefslogtreecommitdiff
path: root/TAO/CIAO/CCF/CCF/CIDL/Traversal/HomeExecutor.hpp
blob: 44340ad94ee83e313135557be4381a6b983e8e0a (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
// file      : CCF/CIDL/Traversal/HomeExecutor.hpp
// author    : Boris Kolpackov <boris@dre.vanderbilt.edu>
// cvs-id    : $Id$

#ifndef CCF_CIDL_TRAVERSAL_HOME_EXECUTOR_HPP
#define CCF_CIDL_TRAVERSAL_HOME_EXECUTOR_HPP

#include "CCF/IDL2/Traversal/Elements.hpp"
#include "CCF/CIDL/SyntaxTree/HomeExecutor.hpp"

namespace CCF
{
  namespace CIDL
  {
    namespace Traversal
    {
      //
      //
      //
      struct HomeExecutor : IDL2::Traversal::ScopeTraverser
      {
        typedef
        SyntaxTree::HomeExecutorPtr
        NodePtr;

        HomeExecutor ()
        {
          map (typeid (SyntaxTree::HomeExecutor), this);
        }

        virtual bool
        traverse (SyntaxTree::NodePtr const& n)
        {
          traverse (n->dynamic_type<SyntaxTree::HomeExecutor> ());
	  return true;
        }

        virtual void
        traverse (NodePtr const&);

        virtual void
        pre (NodePtr const&);

        virtual void
        scope (NodePtr const&);

        virtual void
        post (NodePtr const&);

      };
    }
  }
}

#endif  // CCF_CIDL_TRAVERSAL_HOME_EXECUTOR_HPP