summaryrefslogtreecommitdiff
path: root/cli/traversal/class.cxx
blob: 54af3e1a95cc04a035ca509355c56ffcea3bcb7f (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 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&)
  {
  }
}