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

#ifndef CLI_SEMANTICS_NAMESPACE_HXX
#define CLI_SEMANTICS_NAMESPACE_HXX

#include <cli/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_ ()
    {
    }
  };
}

#endif // CLI_SEMANTICS_NAMESPACE_HXX