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

#ifndef CLI_TRAVERSAL_CLASS_HXX
#define CLI_TRAVERSAL_CLASS_HXX

#include <traversal/elements.hxx>
#include <semantics/class.hxx>

namespace traversal
{
  struct class_: scope_template<semantics::class_>
  {
    virtual void
    traverse (type&);

    virtual void
    pre (type&);

    virtual void
    post (type&);
  };
}

#endif // CLI_TRAVERSAL_CLASS_HXX