aboutsummaryrefslogtreecommitdiff
path: root/odb/traversal/union-template.hxx
blob: feb52b560df96107615e41872cece5b188f89ffd (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
// file      : odb/traversal/union-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_UNION_TEMPLATE_HXX
#define ODB_TRAVERSAL_UNION_TEMPLATE_HXX

#include <odb/semantics/union-template.hxx>

#include <odb/traversal/elements.hxx>
#include <odb/traversal/union.hxx>

namespace traversal
{
  struct union_template: scope_template<semantics::union_template> {};

  struct union_instantiation: scope_template<semantics::union_instantiation>
  {
    virtual void
    traverse (type&);

    virtual void
    instantiates (type&);

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

#endif // ODB_TRAVERSAL_UNION_TEMPLATE_HXX