value_ref_fwd.hpp 884 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. * Copyright Andrey Semashev 2007 - 2015.
  3. * Distributed under the Boost Software License, Version 1.0.
  4. * (See accompanying file LICENSE_1_0.txt or copy at
  5. * http://www.boost.org/LICENSE_1_0.txt)
  6. */
  7. /*!
  8. * \file value_ref_fwd.hpp
  9. * \author Andrey Semashev
  10. * \date 27.07.2012
  11. *
  12. * The header contains forward declaration of a value reference wrapper.
  13. */
  14. #ifndef BOOST_LOG_UTILITY_VALUE_REF_FWD_HPP_INCLUDED_
  15. #define BOOST_LOG_UTILITY_VALUE_REF_FWD_HPP_INCLUDED_
  16. #include <boost/log/detail/config.hpp>
  17. #ifdef BOOST_HAS_PRAGMA_ONCE
  18. #pragma once
  19. #endif
  20. namespace boost {
  21. BOOST_LOG_OPEN_NAMESPACE
  22. /*!
  23. * \brief Reference wrapper for a stored attribute value.
  24. */
  25. template< typename T, typename TagT = void >
  26. class value_ref;
  27. BOOST_LOG_CLOSE_NAMESPACE // namespace log
  28. } // namespace boost
  29. #endif // BOOST_LOG_UTILITY_VALUE_REF_FWD_HPP_INCLUDED_