]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/tools/docca/example/include/docca/issue_47.hpp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / tools / docca / example / include / docca / issue_47.hpp
1 //
2 // Copyright (c) 2020 Vinnie Falco (vinnie dot falco at gmail dot 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_47_HPP
9 #define EXAMPLE_ISSUE_47_HPP
10
11 namespace example {
12
13 /** Issue 47
14
15 The function `max_size` should be
16 listed as a static member.
17 */
18 class issue_47
19 {
20 int i_;
21
22 public:
23 /** Member
24 */
25 void f();
26
27 /** Static Member
28 */
29 static int max_size() noexcept;
30 };
31
32 } // example
33
34 #endif