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

#ifndef ODB_SEMANTICS_UNION_HXX
#define ODB_SEMANTICS_UNION_HXX

#include <odb/semantics/elements.hxx>

namespace semantics
{
  class union_: public virtual type, public scope
  {
  public:
    union_ (path const&, size_t line, size_t column, tree);

    // Resolve conflict between scope::scope and nameable::scope.
    //
    using nameable::scope;

  protected:
    union_ ()
    {
    }
  };
}

#endif // ODB_SEMANTICS_UNION_HXX