summaryrefslogtreecommitdiff
path: root/TAO/CIAO/CCF/CCF/IDL3/Traversal/Component.cpp
blob: 9b8ee9f1693c9c0613cd06fd3c816f2a78b15f1d (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
// file      : CCF/IDL3/Traversal/Component.cpp
// author    : Boris Kolpackov <boris@dre.vanderbilt.edu>
// cvs-id    : $id$

#include "CCF/IDL3/Traversal/Component.hpp"

namespace CCF
{
  namespace IDL3
  {
    namespace Traversal
    {
      // ComponentDecl
      //
      //


      // ComponentDef
      //
      //

      void ComponentDef::
      traverse (NodePtr const& n)
      {
        if (!delegate (n))
        {
          pre (n);
          scope (n);
          post (n);
        }
      }

      void ComponentDef::
      pre (NodePtr const&)
      {
      }

      void ComponentDef::
      scope (NodePtr const& n)
      {
        delegate_scope (n);
      }

      void ComponentDef::
      post (NodePtr const&)
      {
      }
    }
  }
}