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::singleton::iterator

Synopsis

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



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

  // public member functions
  virtual base::data_type const & operator*();
  virtual void operator++();
};

Description

iterator public construct/copy/destruct

  1. explicit iterator(singleton< T > const & owner);

iterator public member functions

  1. virtual base::data_type const & operator*();
  2. virtual void operator++();

PrevUpHomeNext