Tools
tt0704.txt
Associated article: Tech Tips
Tags: Tools
This month's tips focus on enumerating registry sub- keys in D (Matthew Wilson) and null iterator types for STL (Dan Shappir.
Tech Tips
edited by George Frazier
A Null Iterator Type for STL
by Dan Shappir
Listing One
class null_iterator
#if defined(_MSC_VER) && _MSC_VER < 1300
: public std::iterator
#else
: public std::iterator
#endif
{
public:
typedef void ...


