31 lines
674 B
C++
31 lines
674 B
C++
#ifndef BOOST_DESCRIBE_MODIFIER_DESCRIPTION_HPP_INCLUDED
|
|
#define BOOST_DESCRIBE_MODIFIER_DESCRIPTION_HPP_INCLUDED
|
|
|
|
// Copyright 2020, 2022 Peter Dimov
|
|
// Distributed under the Boost Software License, Version 1.0.
|
|
// https://www.boost.org/LICENSE_1_0.txt
|
|
|
|
#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)
|
|
|
|
} // namespace describe
|
|
} // namespace boost
|
|
|
|
#endif // #ifndef BOOST_DESCRIBE_MODIFIER_DESCRIPTION_HPP_INCLUDED
|