Back to home page

EIC code displayed by LXR

 
 

    


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 // Copyright 2020, 2022 Peter Dimov
0005 // Distributed under the Boost Software License, Version 1.0.
0006 // https://www.boost.org/LICENSE_1_0.txt
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 } // namespace describe
0028 } // namespace boost
0029 
0030 #endif // #ifndef BOOST_DESCRIBE_MODIFIER_DESCRIPTION_HPP_INCLUDED