summaryrefslogtreecommitdiff
path: root/cli/traversal/namespace.cxx
blob: 47547db9f5527e7abd622730837e0aed3e8b822a (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
// file      : cli/traversal/namespace.cxx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2009 Code Synthesis Tools CC
// license   : MIT; see accompanying LICENSE file

#include <traversal/namespace.hxx>

namespace traversal
{
  void namespace_::
  traverse (type& n)
  {
    pre (n);
    names (n);
    post (n);
  }

  void namespace_::
  pre (type&)
  {
  }

  void namespace_::
  post (type&)
  {
  }
}