File indexing completed on 2025-12-16 09:45:18
0001 #ifndef BOOST_DESCRIBE_MODIFIER_DESCRIPTION_HPP_INCLUDED
0002 #define BOOST_DESCRIBE_MODIFIER_DESCRIPTION_HPP_INCLUDED
0003
0004
0005
0006
0007
0008 #include <boost/describe/modifiers.hpp>
0009 #include <boost/describe/enum.hpp>
0010
0011 namespace boost
0012 {
0013 namespace describe
0014 {
0015
0016 BOOST_DESCRIBE_ENUM(modifiers,
0017 mod_public,
0018 mod_protected,
0019 mod_private,
0020 mod_virtual,
0021 mod_static,
0022 mod_function,
0023 mod_any_member,
0024 mod_inherited,
0025 mod_hidden)
0026
0027 }
0028 }
0029
0030 #endif