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

#ifndef CLI_TRAVERSAL_NAMESPACE_HXX
#define CLI_TRAVERSAL_NAMESPACE_HXX

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

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

    virtual void
    pre (type&);

    virtual void
    post (type&);
  };
}

#endif // CLI_TRAVERSAL_NAMESPACE_HXX