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 a snapshot of the develop branch, built from commit 3e299386d9.
PrevUpHomeNext

Class impl

boost::log::attributes::constant::impl — Factory implementation.

Synopsis

// In header: <boost/log/attributes/constant.hpp>



// Factory implementation.

class impl : public attribute_value_impl< value_type > {
public:

  // public member functions
  explicit impl(value_type const &);
  explicit impl(value_type &&) noexcept(boost::is_nothrow_move_constructible< value_type >::value);
};

Description

impl public member functions

  1. explicit impl(value_type const & value);

    Constructor with the stored value initialization

  2. explicit impl(value_type && value) noexcept(boost::is_nothrow_move_constructible< value_type >::value);

    Constructor with the stored value initialization


PrevUpHomeNext