| 1 | #ifndef BOOST_DESCRIBE_MODIFIER_DESCRIPTION_HPP_INCLUDED |
| 2 | #define BOOST_DESCRIBE_MODIFIER_DESCRIPTION_HPP_INCLUDED |
| 3 | |
| 4 | // Copyright 2020, 2022 Peter Dimov |
| 5 | // Distributed under the Boost Software License, Version 1.0. |
| 6 | // https://www.boost.org/LICENSE_1_0.txt |
| 7 | |
| 8 | #include <boost/describe/modifiers.hpp> |
| 9 | #include <boost/describe/enum.hpp> |
| 10 | |
| 11 | namespace boost |
| 12 | { |
| 13 | namespace describe |
| 14 | { |
| 15 | |
| 16 | BOOST_DESCRIBE_ENUM(modifiers, |
| 17 | mod_public, |
| 18 | mod_protected, |
| 19 | mod_private, |
| 20 | mod_virtual, |
| 21 | mod_static, |
| 22 | mod_function, |
| 23 | mod_any_member, |
| 24 | mod_inherited, |
| 25 | mod_hidden) |
| 26 | |
| 27 | } // namespace describe |
| 28 | } // namespace boost |
| 29 | |
| 30 | #endif // #ifndef BOOST_DESCRIBE_MODIFIER_DESCRIPTION_HPP_INCLUDED |
| 31 | |