summaryrefslogtreecommitdiff
path: root/cli/semantics/class.hxx
blob: be0b9f99e39bcec76a6d123a1519e0c05107ec87 (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-2011 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