Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct template BoundaryCheckerConcept

boost::BoundaryCheckerConcept

Synopsis

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

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

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

Description

Concept checking class for the BoundaryChecker concept

BoundaryCheckerConcept public construct/copy/destruct

  1. ~BoundaryCheckerConcept();

PrevUpHomeNext