From cdd130ae2d91ef126aa8cd57bd13efbcc8e2a353 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Wed, 17 Mar 2004 12:53:57 +0000 Subject: [PATCH] Added typedefs to index [SVN r22511] --- doc/index.html | 27 +++++++++++++++++++++++---- 1 file changed, 23 insertions(+), 4 deletions(-) diff --git a/doc/index.html b/doc/index.html index 556da198..89e15ac0 100644 --- a/doc/index.html +++ b/doc/index.html @@ -46,10 +46,10 @@
syntax_option_type
match_flag_type
class bad_expression
-
class regex_traits
- class template basic_regex
class template - sub_match
class template - match_results
+
class regex_traits
+
class template basic_regex
+
class template sub_match
+
class template match_results
Algorithms
@@ -66,6 +66,25 @@
regex_token_iterator
+
Typedefs
+
+
+
regex     [ = basic_regex<char> ]
+
wregex     [ = basic_regex<wchar_t> ]
+
cmatch     [ = match_results<const char*> ]
+
wcmatch     [ = match_results<const wchar_t*> ]
+
smatch     [ = match_results<std::string::const_iterator> ]
+
wsmatch     [ = match_results<std::wstring::const_iterator> ]
+
cregex_iterator     [ = regex_iterator<const char*>]
+
wcregex_iterator     [ = regex_iterator<const wchar_t*>]
+
sregex_iterator     [ = regex_iterator<std::string::const_iterator>]
+
wsregex_iterator     [ = regex_iterator<std::wstring::const_iterator>]
+
cregex_token_iterator     [ = regex_token_iterator<const char*>]
+
wcregex_token_iterator     [ = regex_token_iterator<const wchar_t*>]
+
sregex_token_iterator     [ = regex_token_iterator<std::string::const_iterator>]
+
wsregex_token_iterator     [ = regex_token_iterator<std::wstring::const_iterator>]
+
+
Misc.