123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- #ifndef BOOST_LOG_ATTRIBUTES_FALLBACK_POLICY_FWD_HPP_INCLUDED_
- #define BOOST_LOG_ATTRIBUTES_FALLBACK_POLICY_FWD_HPP_INCLUDED_
- #include <boost/log/detail/config.hpp>
- #ifdef BOOST_HAS_PRAGMA_ONCE
- #pragma once
- #endif
- namespace boost {
- BOOST_LOG_OPEN_NAMESPACE
- struct fallback_to_none;
- struct fallback_to_throw;
- template< typename DefaultT >
- struct fallback_to_default;
- BOOST_LOG_CLOSE_NAMESPACE
- }
- #endif
|