]> git.proxmox.com Git - ceph.git/blobdiff - 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
diff --git a/ceph/src/boost/tools/docca/example/include/docca/issue_34.hpp b/ceph/src/boost/tools/docca/example/include/docca/issue_34.hpp
new file mode 100644 (file)
index 0000000..a9e8331
--- /dev/null
@@ -0,0 +1,31 @@
+//
+// Copyright (c) 2020 Krystian Stasiowski (sdkrystian@gmail.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_34_HPP
+#define EXAMPLE_ISSUE_34_HPP
+
+namespace example {
+
+/** Issue 34
+*/
+class issue_34
+{
+    struct P
+    {
+    };
+
+public:
+    /** Private base classes should be hidden.
+    */
+    struct Q : private P
+    {
+    };
+};
+
+} // example
+
+#endif