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

#ifndef ODB_TRAVERSAL_ENUM_HXX
#define ODB_TRAVERSAL_ENUM_HXX

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

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

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

    virtual void
    traverse (type&);
  };

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

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

    virtual void
    enumerates (type&);

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

#endif // ODB_TRAVERSAL_ENUM_HXX