/usr/include/boost/test/utils
NameSizeModeActions
basic_cstring/-0755rm
iterator/-0755rm
runtime/-0755rm
algorithm.hpp136710644editdlrm
assign_op.hpp10980644editdlrm
class_properties.hpp81640644editdlrm
custom_manip.hpp18980644editdlrm
foreach.hpp117940644editdlrm
is_cstring.hpp42940644editdlrm
is_forward_iterable.hpp84560644editdlrm
lazy_ostream.hpp47340644editdlrm
named_params.hpp145440644editdlrm
nullstream.hpp39900644editdlrm
rtti.hpp18450644editdlrm
setcolor.hpp93150644editdlrm
string_cast.hpp20020644editdlrm
timer.hpp50180644editdlrm
wrap_stringstream.hpp49050644editdlrm
xml_printer.hpp40510644editdlrm
Edit: /usr/include/boost/test/utils/lazy_ostream.hpp (4734B)
// (C) Copyright Gennadiy Rozental 2001. // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // See http://www.boost.org/libs/test for the library home page. // // Description : contains definition for all test tools in test toolbox // *************************************************************************** #ifndef BOOST_TEST_UTILS_LAZY_OSTREAM_HPP #define BOOST_TEST_UTILS_LAZY_OSTREAM_HPP // Boost.Test #include // STL #include #include //____________________________________________________________________________// // ************************************************************************** // // ************** lazy_ostream ************** // // ************************************************************************** // namespace boost { namespace unit_test { class BOOST_TEST_DECL lazy_ostream { public: virtual ~lazy_ostream() {} static lazy_ostream& instance() { return inst; } #if !defined(BOOST_EMBTC) friend std::ostream& operator<<( std::ostream& ostr, lazy_ostream const& o ) { return o( ostr ); } #else friend std::ostream& operator<<( std::ostream& ostr, lazy_ostream const& o ); #endif // access method bool empty() const { return m_empty; } // actual printing interface; to be accessed only by this class and children virtual std::ostream& operator()( std::ostream& ostr ) const { return ostr; } protected: explicit lazy_ostream( bool p_empty = true ) : m_empty( p_empty ) {} private: // Data members bool m_empty; static lazy_ostream inst; }; #if defined(BOOST_EMBTC) inline std::ostream& operator<<( std::ostream& ostr, lazy_ostream const& o ) { return o( ostr ); } #endif //____________________________________________________________________________// template class lazy_ostream_impl : public lazy_ostream { public: lazy_ostream_impl( PrevType const& prev, T const& value ) : lazy_ostream( false ) , m_prev( prev ) , m_value( value ) { } std::ostream& operator()( std::ostream& ostr ) const BOOST_OVERRIDE { return m_prev(ostr) << m_value; } private: // Data members PrevType const& m_prev; StorageT m_value; }; //____________________________________________________________________________// template inline lazy_ostream_impl operator<<( lazy_ostream const& prev, T const& v ) { return lazy_ostream_impl( prev, v ); } //____________________________________________________________________________// template inline lazy_ostream_impl,T> operator<<( lazy_ostream_impl const& prev, T const& v ) { typedef lazy_ostream_impl PrevType; return lazy_ostream_impl( prev, v ); } //____________________________________________________________________________// #if BOOST_TEST_USE_STD_LOCALE template inline lazy_ostream_impl operator<<( lazy_ostream const& prev, R& (BOOST_TEST_CALL_DECL *man)(S&) ) { typedef R& (BOOST_TEST_CALL_DECL * ManipType)(S&); return lazy_ostream_impl( prev, man ); } //____________________________________________________________________________// template inline lazy_ostream_impl,R& (BOOST_TEST_CALL_DECL *)(S&),R& (BOOST_TEST_CALL_DECL *)(S&)> operator<<( lazy_ostream_impl const& prev, R& (BOOST_TEST_CALL_DECL *man)(S&) ) { typedef R& (BOOST_TEST_CALL_DECL * ManipType)(S&); return lazy_ostream_impl,ManipType,ManipType>( prev, man ); } //____________________________________________________________________________// #endif #define BOOST_TEST_LAZY_MSG( M ) (::boost::unit_test::lazy_ostream::instance() << M) } // namespace unit_test } // namespace boost #include #endif // BOOST_TEST_UTILS_LAZY_OSTREAM_HPP