]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/tools/docca/example/include/docca/issue_34.hpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / tools / docca / example / include / docca / issue_34.hpp
1 //
2 // Copyright (c) 2020 Krystian Stasiowski (sdkrystian@gmail.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_34_HPP
9 #define EXAMPLE_ISSUE_34_HPP
10
11 namespace example {
12
13 /** Issue 34
14 */
15 class issue_34
16 {
17 /// Should not be displayed
18 struct P
19 {
20 };
21
22 public:
23 /// Base of Q
24 struct R
25 {
26 };
27
28 /** Q should be derived only from R
29 */
30 struct Q : private P, R
31 {
32 };
33 };
34
35 } // example
36
37 #endif