summaryrefslogtreecommitdiffstats
path: root/src/boost/tools/docca/example/include/docca/issue_38.hpp
blob: eb515033d6544744805ce62b1e9ec9d0286c9246 (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
28
29
30
31
32
33
34
35
//
// Copyright (c) 2020 Evan Lenz (evan@lenzconsulting.com)
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//

#ifndef EXAMPLE_ISSUE_38_HPP
#define EXAMPLE_ISSUE_38_HPP

namespace example {

/** Issue 38

    Open:      [a, b]
    Half-open: [a, b)
    Closed:    (a, b)

    @li Gracefully handle brackets in javadoc comments
*/
class issue_38
{
    int i_;

public:
    /** Half-open: [a, b)

        first to last exclusive, i.e. [ first, last )
    */
    issue_38();
};

} // example

#endif