]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/tools/docca/example/include/docca/issue_34.hpp
import quincy beta 17.1.0
[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 struct P
18 {
19 };
20
21 public:
22 /** Private base classes should be hidden.
23 */
24 struct Q : private P
25 {
26 };
27 };
28
29 } // example
30
31 #endif