1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- #ifndef BOOST_LOG_EXPRESSIONS_FORMATTERS_STREAM_HPP_INCLUDED_
- #define BOOST_LOG_EXPRESSIONS_FORMATTERS_STREAM_HPP_INCLUDED_
- #include <boost/phoenix/core/argument.hpp>
- #include <boost/log/detail/config.hpp>
- #include <boost/log/detail/header.hpp>
- #ifdef BOOST_HAS_PRAGMA_ONCE
- #pragma once
- #endif
- namespace boost {
- BOOST_LOG_OPEN_NAMESPACE
- namespace expressions {
- typedef phoenix::expression::argument< 2 >::type stream_type;
- BOOST_INLINE_VARIABLE const stream_type stream = {};
- }
- BOOST_LOG_CLOSE_NAMESPACE
- }
- #include <boost/log/detail/footer.hpp>
- #if defined(BOOST_LOG_EXPRESSIONS_ATTR_HPP_INCLUDED_)
- #include <boost/log/detail/attr_output_impl.hpp>
- #endif
- #endif
|