diff --git a/doc/Attic/regex_iterator.html b/doc/Attic/regex_iterator.html index 1b0fce5b..c8440154 100644 --- a/doc/Attic/regex_iterator.html +++ b/doc/Attic/regex_iterator.html @@ -63,6 +63,13 @@ public: regex_iterator operator++(int); }; +typedef regex_iterator<const char*> cregex_iterator; +typedef regex_iterator<std::string::const_iterator> sregex_iterator; +#ifndef BOOST_NO_WREGEX +typedef regex_iterator<const wchar_t*> wcregex_iterator; +typedef regex_iterator<std::wstring::const_iterator> wsregex_iterator; +#endif +

Description

A regex_iterator is constructed from a pair of iterators, and enumerates all diff --git a/doc/Attic/regex_token_iterator.html b/doc/Attic/regex_token_iterator.html index b13b3cb5..ccec08e0 100644 --- a/doc/Attic/regex_token_iterator.html +++ b/doc/Attic/regex_token_iterator.html @@ -71,6 +71,13 @@ public: regex_token_iterator& operator++(); regex_token_iterator operator++(int); }; + +typedef regex_token_iterator<const char*> cregex_token_iterator; +typedef regex_token_iterator<std::string::const_iterator> sregex_token_iterator; +#ifndef BOOST_NO_WREGEX +typedef regex_token_iterator<const wchar_t*> wcregex_token_iterator; +typedef regex_token_iterator<<std::wstring::const_iterator> wsregex_token_iterator; +#endif

Description

regex_token_iterator();
diff --git a/doc/regex_iterator.html b/doc/regex_iterator.html index 1b0fce5b..c8440154 100644 --- a/doc/regex_iterator.html +++ b/doc/regex_iterator.html @@ -63,6 +63,13 @@ public: regex_iterator operator++(int); }; +typedef regex_iterator<const char*> cregex_iterator; +typedef regex_iterator<std::string::const_iterator> sregex_iterator; +#ifndef BOOST_NO_WREGEX +typedef regex_iterator<const wchar_t*> wcregex_iterator; +typedef regex_iterator<std::wstring::const_iterator> wsregex_iterator; +#endif +

Description

A regex_iterator is constructed from a pair of iterators, and enumerates all diff --git a/doc/regex_token_iterator.html b/doc/regex_token_iterator.html index b13b3cb5..ccec08e0 100644 --- a/doc/regex_token_iterator.html +++ b/doc/regex_token_iterator.html @@ -71,6 +71,13 @@ public: regex_token_iterator& operator++(); regex_token_iterator operator++(int); }; + +typedef regex_token_iterator<const char*> cregex_token_iterator; +typedef regex_token_iterator<std::string::const_iterator> sregex_token_iterator; +#ifndef BOOST_NO_WREGEX +typedef regex_token_iterator<const wchar_t*> wcregex_token_iterator; +typedef regex_token_iterator<<std::wstring::const_iterator> wsregex_token_iterator; +#endif

Description

regex_token_iterator();