]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/tools/docca/example/include/docca/issue_70.hpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / tools / docca / example / include / docca / issue_70.hpp
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_70_HPP
9 #define EXAMPLE_ISSUE_70_HPP
10
11 namespace example {
12
13 /** Issue 70
14
15 This reference, @ref issue_70_b::foo, should link to the issue_70_b page
16 (not issue_63).
17 */
18 enum class issue_70
19 {
20 foo,
21 bar
22 };
23
24 enum class issue_70_b
25 {
26 foo,
27 bar
28 };
29
30 } // example
31
32 #endif