summaryrefslogtreecommitdiff
path: root/CIAO/CCF/CCF/IDL2/Traversal/Exception.cpp
blob: 21e41784c712807fc1074e8d4560648b352c4627 (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/Traversal/Exception.cpp
// author    : Boris Kolpackov <boris@dre.vanderbilt.edu>
// cvs-id    : $Id$

#include "CCF/IDL2/Traversal/Exception.hpp"

namespace CCF
{
  namespace IDL2
  {
    namespace Traversal
    {
      void Exception::
      traverse (Type& s)
      {
        pre (s);
        name (s);
        names (s);
        post (s);
      }

      void Exception::
      pre (Type&)
      {
      }

      void Exception::
      name (Type&)
      {
      }

      void Exception::
      post (Type&)
      {
      }
    }
  }
}