summaryrefslogtreecommitdiff
path: root/cli/traversal/namespace.cxx
blob: 51c09637da199ff31c72596df66211ca693312b5 (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-2019 Code Synthesis Tools CC
// license   : MIT; see accompanying LICENSE file

#include <cli/traversal/namespace.hxx>

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

  void namespace_::
  pre (type&)
  {
  }

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