summaryrefslogtreecommitdiff
path: root/cli/semantics/doc.hxx
blob: 08c5d65dae08be454ceb8a5d2d34310a583f4ff9 (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/doc.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_DOC_HXX
#define CLI_SEMANTICS_DOC_HXX

#include <cli/semantics/elements.hxx>

namespace semantics
{
  // Scope-level documentation node.
  //
  class doc: public nameable, public doc_strings
  {
  public:
    doc (path const& file, size_t line, size_t column)
        : node (file, line, column) {}
  };
}

#endif // CLI_SEMANTICS_DOC_HXX