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
11namespace boost
12{
13namespace describe
14{
15
16BOOST_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

source code of boost/libs/describe/include/boost/describe/modifier_description.hpp