summaryrefslogtreecommitdiff
path: root/cli/semantics/class.hxx
blob: 973ff768f28a33dccd8b5cff035fca7985a06e0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// file      : cli/semantics/class.hxx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2009-2010 Code Synthesis Tools CC
// license   : MIT; see accompanying LICENSE file

#ifndef CLI_SEMANTICS_CLASS_HXX
#define CLI_SEMANTICS_CLASS_HXX

#include <semantics/elements.hxx>

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

#endif // CLI_SEMANTICS_CLASS_HXX