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

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

namespace CCF
{
  namespace IDL3
  {
    namespace Traversal
    {
      // HomeDef
      //
      //
      void HomeDef::
      traverse (NodePtr const& n)
      {
        if (!delegate (n))
        {
          pre (n);
          scope (n);
          post (n);
        }
      }

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

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

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