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

Struct iterator

boost::unit_test::data::monomorphic::generated_by::iterator

Synopsis

// In header: <boost/test/data/monomorphic/generate.hpp>



struct iterator :
  public boost::unit_test::data::monomorphic::dataset< T >::iterator
{
  // construct/copy/destruct
  explicit iterator(Generator &);

  // public member functions
  virtual T const & operator*();
  virtual void operator++();
};

Description

iterator public construct/copy/destruct

  1. explicit iterator(Generator & gen);

iterator public member functions

  1. virtual T const & operator*();
  2. virtual void operator++();

PrevUpHomeNext