![]() |
Home | Libraries | People | FAQ | More |
boost::unit_test::data::monomorphic::dataset::iterator — Interface of the dataset iterator.
// In header: <boost/test/data/monomorphic/dataset.hpp> // Interface of the dataset iterator. class iterator { public: // types typedef monomorphic::traits< T >::ref_type ref_type; // construct/copy/destruct ~iterator(); // public member functions virtual ref_type operator*() = 0; virtual void operator++() = 0; };