Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

Class template max_size_decorator_actor

boost::log::expressions::max_size_decorator_actor

Synopsis

// In header: <boost/log/expressions/formatters/max_size_decorator.hpp>

template<typename SubactorT, typename CharT, 
         template< typename > class ActorT = phoenix::actor> 
class max_size_decorator_actor :
  public ActorT< max_size_decorator_terminal< SubactorT, CharT > >
{
public:
  // types
  typedef max_size_decorator_terminal< SubactorT, CharT > terminal_type;  // Base terminal type. 
  typedef terminal_type::char_type                        char_type;      // Character type. 
  typedef ActorT< terminal_type >                         base_type;      // Base actor type. 

  // construct/copy/destruct
  explicit max_size_decorator_actor(base_type const &);

  // public member functions
  terminal_type const & get_terminal() const;
};

Description

Character decorator actor

max_size_decorator_actor public construct/copy/destruct

  1. explicit max_size_decorator_actor(base_type const & act);
    Initializing constructor.

max_size_decorator_actor public member functions

  1. terminal_type const & get_terminal() const;
    Returns reference to the terminal.

PrevUpHomeNext