aboutsummaryrefslogtreecommitdiff
path: root/odb/semantics/namespace.hxx
blob: 105ed0bf5db78ecbb0b46bd5a3b6c3c091f1afc5 (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
// file      : odb/semantics/namespace.hxx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2009-2010 Code Synthesis Tools CC
// license   : GNU GPL v3; 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&, size_t line, size_t column);
    namespace_ ();

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

#endif // ODB_SEMANTICS_NAMESPACE_HXX