Boost  v1.57.0
doxygen for www.boost.org
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
if.hpp File Reference
#include <boost/mpl/bool.hpp>
#include <boost/phoenix/core/actor.hpp>
#include <boost/phoenix/core/meta_grammar.hpp>
#include <boost/phoenix/core/terminal_fwd.hpp>
#include <boost/phoenix/core/is_nullary.hpp>
#include <boost/phoenix/core/environment.hpp>
#include <boost/fusion/sequence/intrinsic/at_c.hpp>
#include <boost/type_traits/remove_cv.hpp>
#include <boost/type_traits/remove_reference.hpp>
#include <boost/log/detail/config.hpp>
#include <boost/log/detail/custom_terminal_spec.hpp>
#include <boost/log/detail/header.hpp>
#include <boost/log/detail/generate_overloads.hpp>
#include <boost/log/detail/footer.hpp>
Include dependency graph for if.hpp:
This graph shows which files directly or indirectly include this file:

Classes

class  boost::expressions::aux::if_output_terminal< LeftT, CondT, ThenT >
 
struct  boost::expressions::aux::if_output_terminal< LeftT, CondT, ThenT >::result< typename >
 Result type definition. More...
 
struct  boost::expressions::aux::if_output_terminal< LeftT, CondT, ThenT >::result< ThisT(ContextT) >
 
class  boost::expressions::aux::if_else_output_terminal< LeftT, CondT, ThenT, ElseT >
 
struct  boost::expressions::aux::if_else_output_terminal< LeftT, CondT, ThenT, ElseT >::result< typename >
 Result type definition. More...
 
struct  boost::expressions::aux::if_else_output_terminal< LeftT, CondT, ThenT, ElseT >::result< ThisT(ContextT) >
 
struct  boost::expressions::aux::if_then_else_gen< CondT, ThenT, ElseT >
 
struct  boost::expressions::aux::if_then_gen< CondT, ThenT >
 
struct  boost::expressions::aux::if_then_gen< CondT, ThenT >::else_gen
 
class  boost::expressions::aux::if_gen< CondT >
 
struct  boost::phoenix::result_of::is_nullary< custom_terminal< boost::log::expressions::aux::if_output_terminal< LeftT, CondT, ThenT > > >
 
struct  boost::phoenix::result_of::is_nullary< custom_terminal< boost::log::expressions::aux::if_else_output_terminal< LeftT, CondT, ThenT, ElseT > > >
 

Namespaces

 boost
 Duration formatting facet for input.
 
 boost::expressions
 
 boost::expressions::aux
 
 boost::phoenix
 
 boost::phoenix::result_of
 

Macros

#define BOOST_LOG_AUX_OVERLOAD(left_ref, right_ref)
 
#define BOOST_LOG_AUX_OVERLOAD(left_ref, right_ref)
 

Functions

template<typename CondT >
BOOST_FORCEINLINE aux::if_gen
< CondT > 
boost::expressions::if_ (CondT const &cond)
 The function returns a conditional formatter generator object. More...
 

Detailed Description

Author
Andrey Semashev
Date
17.11.2012

The header contains implementation of a conditional formatter.

Macro Definition Documentation

#define BOOST_LOG_AUX_OVERLOAD (   left_ref,
  right_ref 
)
Value:
template< typename LeftExprT, typename CondT, typename ThenT, typename ElseT >\
operator<< (phoenix::actor< LeftExprT > left_ref left, if_then_else_gen< CondT, ThenT, ElseT > right_ref right)\
{\
typedef if_else_output_terminal< phoenix::actor< LeftExprT >, CondT, ThenT, ElseT > terminal_type;\
phoenix::actor< terminal_type > actor = {{ terminal_type(left, right.m_cond, right.m_then, right.m_else) }};\
return actor;\
}
return b left
Definition: map_by.hpp:111
interval_bounds right(interval_bounds x1)
Definition: interval_bounds.hpp:21
#define BOOST_FORCEINLINE
Definition: suffix.hpp:583
Definition: actor.hpp:133
#define BOOST_LOG_AUX_OVERLOAD (   left_ref,
  right_ref 
)
Value:
template< typename LeftExprT, typename CondT, typename ThenT >\
operator<< (phoenix::actor< LeftExprT > left_ref left, if_then_gen< CondT, ThenT > right_ref right)\
{\
typedef if_output_terminal< phoenix::actor< LeftExprT >, CondT, ThenT > terminal_type;\
phoenix::actor< terminal_type > actor = {{ terminal_type(left, right.else_.m_cond, right.else_.m_then) }};\
return actor;\
}
return b left
Definition: map_by.hpp:111
interval_bounds right(interval_bounds x1)
Definition: interval_bounds.hpp:21
#define BOOST_FORCEINLINE
Definition: suffix.hpp:583
Definition: actor.hpp:133