Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct template ConsumerConcept

boost::ConsumerConcept

Synopsis

// In header: <boost/iterator/consumer_concept.hpp>

template<typename X> 
struct ConsumerConcept :
  public DefaultConstructible<X>, private CopyConstructible<X>
{
  // types
  typedef X::input_type input_type;                 
  typedef unspecified   boost_concept_check__LINE__;

  // construct/copy/destruct
  ~ConsumerConcept();
};

Description

Concept checking class for the Consumer concept

ConsumerConcept public construct/copy/destruct

  1. ~ConsumerConcept();

PrevUpHomeNext