aboutsummaryrefslogtreecommitdiff
path: root/odb/traversal/template.hxx
blob: 43aac067bb86af909e15d1191c2e2ddaa85d7480 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// file      : odb/traversal/template.hxx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
// license   : GNU GPL v3; see accompanying LICENSE file

#ifndef ODB_TRAVERSAL_TEMPLATE_HXX
#define ODB_TRAVERSAL_TEMPLATE_HXX

#include <odb/semantics/template.hxx>
#include <odb/traversal/elements.hxx>

namespace traversal
{
  struct instantiates: edge<semantics::instantiates>
  {
    instantiates ()
    {
    }

    instantiates (node_dispatcher& n)
    {
      node_traverser (n);
    }

    virtual void
    traverse (type&);
  };

  struct template_: node<semantics::template_> {};

  struct instantiation: node<semantics::instantiation>
  {
    virtual void
    traverse (type&);

    virtual void
    instantiates (type&);

    virtual void
    instantiates (type&, edge_dispatcher&);
  };

  struct type_template: node<semantics::type_template> {};

  struct type_instantiation: node<semantics::type_instantiation>
  {
    virtual void
    traverse (type&);

    virtual void
    instantiates (type&);

    virtual void
    instantiates (type&, edge_dispatcher&);
  };
}

#endif // ODB_TRAVERSAL_TEMPLATE_HXX