]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/tools/docca/example/include/docca/issue_63.hpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / tools / docca / example / include / docca / issue_63.hpp
CommitLineData
1e59de90
TL
1//
2// Copyright (c) 2021 Evan Lenz (evan@lenzconsulting.com)
3//
4// Distributed under the Boost Software License, Version 1.0. (See accompanying
5// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6//
7
8#ifndef EXAMPLE_ISSUE_63_HPP
9#define EXAMPLE_ISSUE_63_HPP
10
11namespace example {
12
13/** Issue 63
14
15 @li Markup (@ commands) in tables should be rendered
16*/
17enum class issue_63
18{
19 /**
20 * foo brief
21
22 foo description
23
24 @see issue_55
25 */
26 foo,
27
28 /**
29 * bar brief
30
31 bar description
32
33 @li First bullet referencing @ref issue_55
34 @li Second bullet
35 */
36 bar
37};
38
39} // example
40
41#endif