modifier_description.hpp 674 B

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