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