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

#include <traversal/class.hxx>

namespace traversal
{
  void class_::
  traverse (type& c)
  {
    pre (c);
    names (c);
    post (c);
  }

  void class_::
  pre (type&)
  {
  }

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