summaryrefslogtreecommitdiff
path: root/cli/semantics/namespace.hxx
blob: 92a3b13483bc0cf96e787f61685bb48532244ed1 (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      : cli/semantics/namespace.hxx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2009 Code Synthesis Tools CC
// license   : MIT; see accompanying LICENSE file

#ifndef CLI_SEMANTICS_NAMESPACE_HXX
#define CLI_SEMANTICS_NAMESPACE_HXX

#include <semantics/elements.hxx>

namespace semantics
{
  class namespace_: public scope
  {
  protected:
    friend class graph<node, edge>;

    namespace_ (path const& file, size_t line, size_t column)
        : node (file, line, column)
    {
    }
  };
}

#endif // CLI_SEMANTICS_NAMESPACE_HXX