123456789101112131415161718192021222324252627282930 |
- #ifndef BOOST_DESCRIBE_MODIFIER_DESCRIPTION_HPP_INCLUDED
- #define BOOST_DESCRIBE_MODIFIER_DESCRIPTION_HPP_INCLUDED
- #include <boost/describe/modifiers.hpp>
- #include <boost/describe/enum.hpp>
- namespace boost
- {
- namespace describe
- {
- BOOST_DESCRIBE_ENUM(modifiers,
- mod_public,
- mod_protected,
- mod_private,
- mod_virtual,
- mod_static,
- mod_function,
- mod_any_member,
- mod_inherited,
- mod_hidden)
- }
- }
- #endif
|