aboutsummaryrefslogtreecommitdiff
path: root/odb/traversal/relational/changelog.hxx
blob: 8842bd084d867a0ffca52cb1d54cdf412d09a787 (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
// file      : odb/traversal/relational/changelog.hxx
// copyright : Copyright (c) 2009-2017 Code Synthesis Tools CC
// license   : GNU GPL v3; see accompanying LICENSE file

#ifndef ODB_TRAVERSAL_RELATIONAL_CHANGELOG_HXX
#define ODB_TRAVERSAL_RELATIONAL_CHANGELOG_HXX

#include <odb/semantics/relational/changelog.hxx>
#include <odb/traversal/relational/elements.hxx>

namespace traversal
{
  namespace relational
  {
    struct contains_model: edge<semantics::relational::contains_model>
    {
      contains_model () {}
      contains_model (node_dispatcher& n) {node_traverser (n);}

      virtual void
      traverse (type&);
    };

    struct contains_changeset: edge<semantics::relational::contains_changeset>
    {
      contains_changeset () {}
      contains_changeset (node_dispatcher& n) {node_traverser (n);}

      virtual void
      traverse (type&);
    };

    struct changelog: node<semantics::relational::changelog>
    {
    public:
      virtual void
      traverse (type&);

      virtual void
      contains_model (type&);

      virtual void
      contains_model (type&, edge_dispatcher&);

      virtual void
      contains_changeset (type&);

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

#endif // ODB_TRAVERSAL_RELATIONAL_CHANGELOG_HXX