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 {
  // construct/copy/destruct
  explicit iterator(singleton< T > const *);

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

Description

iterator public construct/copy/destruct

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

iterator public member functions

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

PrevUpHomeNext