summaryrefslogtreecommitdiff
path: root/odb/semantics/namespace.hxx
blob: 936a8c7e0593ce7b01710dcfec122a5481f958b4 (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/semantics/namespace.hxx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2009-2010 Code Synthesis Tools CC
// license   : GNU GPL v2; see accompanying LICENSE file

#ifndef ODB_SEMANTICS_NAMESPACE_HXX
#define ODB_SEMANTICS_NAMESPACE_HXX

#include <odb/semantics/elements.hxx>

namespace semantics
{
  class namespace_: public scope
  {
  public:
    namespace_ (path const& file, size_t line, size_t column)
        : node (file, line, column)
    {
    }

    namespace_ ()
    {
    }

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

#endif // ODB_SEMANTICS_NAMESPACE_HXX