Added new iterator typedefs

[SVN r21148]
This commit is contained in:
John Maddock
2003-12-05 13:01:54 +00:00
parent dddfc1a63a
commit a008c722a4
4 changed files with 28 additions and 0 deletions

View File

@ -63,6 +63,13 @@ public:
regex_iterator <A href="#o7">operator</A>++(int);
};
typedef regex_iterator&lt;const char*&gt; cregex_iterator;
typedef regex_iterator&lt;std::string::const_iterator&gt; sregex_iterator;
#ifndef BOOST_NO_WREGEX
typedef regex_iterator&lt;const wchar_t*&gt; wcregex_iterator;
typedef regex_iterator&lt;std::wstring::const_iterator&gt; wsregex_iterator;
#endif
</pre>
<h3><a name="description"></a>Description</h3>
<p>A regex_iterator is constructed from a pair of iterators, and enumerates all