reworked regex directory structure to match boost requirements.

[SVN r9752]
This commit is contained in:
John Maddock
2001-04-10 11:44:47 +00:00
parent dcb64d5db7
commit ed21a5183b
69 changed files with 155 additions and 111 deletions

View File

@ -1067,7 +1067,7 @@ syntax messages replace the default ones. <br>
<hr>
<h3><a name="demos"></a>Appendix 4: Demo Applications</h3>
<h3><a name="demos"></a>Appendix 4: Example Applications</h3>
<p>There are three demo applications that ship with this library,
they all come with makefiles for Borland, Microsoft and gcc
@ -1081,9 +1081,9 @@ guarantee that the library will behave as claimed - at least as
far as those items tested are concerned - if anyone spots
anything that isn't being tested I'd be glad to hear about it. </p>
<p>Files: <a href="demo/regress/parse.cpp">parse.cpp</a>, <a
href="demo/regress/regress.cpp">regress.cpp</a>, <a
href="demo/regress/tests.cpp">tests.cpp</a>. </p>
<p>Files: <a href="test/regress/parse.cpp">parse.cpp</a>, <a
href="test/regress/regress.cpp">regress.cpp</a>, <a
href="test/regress/tests.cpp">tests.cpp</a>. </p>
<h5>jgrep.exe </h5>
@ -1093,8 +1093,8 @@ and the mapfile class to see an example of a &quot;smart&quot;
bidirectional iterator that can be used with regex++ or any other
STL algorithm. </p>
<p>Files: <a href="demo/jgrep/jgrep.cpp">jgrep.cpp</a>, <a
href="demo/jgrep/main.cpp">main.cpp</a>. </p>
<p>Files: <a href="example/jgrep/jgrep.cpp">jgrep.cpp</a>, <a
href="example/jgrep/main.cpp">main.cpp</a>. </p>
<h5>timer.exe </h5>
@ -1103,41 +1103,41 @@ results of all matches are timed, allowing the programmer to
optimize their regular expressions where performance is critical.
</p>
<p>Files: <a href="demo/timer/regex_timer.cpp">regex_timer.cpp</a>.
<p>Files: <a href="example/timer/regex_timer.cpp">regex_timer.cpp</a>.
<br>
</p>
<p>The snippets demos contain the code examples used in the
<p>The snippets examples contain the code examples used in the
documentation:</p>
<p><a href="demo/snippets/snip1.cpp">snip1.cpp</a>: ftp based
<p><a href="example/snippets/regex_match_example.cpp">regex_match_example.cpp</a>: ftp based
regex_match example.</p>
<p><a href="demo/snippets/snip2.cpp">snip2.cpp</a>: regex_search
<p><a href="example/snippets/regex_search_example.cpp">regex_search_example.cpp</a>: regex_search
example: searches a cpp file for class definitions.</p>
<p><a href="demo/snippets/snip3.cpp">snip3.cpp</a>: regex_grep
<p><a href="example/snippets/regex_grep_example_1.cpp">regex_grep_example_1.cpp</a>: regex_grep
example 1: searches a cpp file for class definitions.</p>
<p><a href="demo/snippets/snip4.cpp">snip4.cpp</a>: regex_merge
<p><a href="example/snippets/regex_merge_example.cpp">regex_merge_example.cpp</a>: regex_merge
example: converts a C++ file to syntax highlighted HTML.</p>
<p><a href="demo/snippets/snip5.cpp">snip5.cpp</a>: regex_grep
<p><a href="example/snippets/regex_grep_example_2.cpp">regex_grep_example_2.cpp</a>: regex_grep
example 2: searches a cpp file for class definitions, using a
global callback function. </p>
<p><a href="demo/snippets/snip6.cpp">snip6.cpp</a>: regex_grep
<p><a href="example/snippets/regex_grep_example_3.cpp">regex_grep_example_3.cpp</a>: regex_grep
example 2: searches a cpp file for class definitions, using a
bound member function callback.</p>
<p><a href="demo/snippets/snip7.cpp">snip7.cpp</a>: regex_grep
<p><a href="example/snippets/regex_grep_example_4.cpp">regex_grep_example_4.cpp</a>: regex_grep
example 2: searches a cpp file for class definitions, using a C++
Builder closure as a callback.</p>
<p><a href="demo/snippets/snip8.cpp">snip8.cpp</a>: regex_split
<p><a href="example/snippets/regex_split_example_1.cpp">regex_split_example_1.cpp</a>: regex_split
example: split a string into tokens.</p>
<p><a href="demo/snippets/snip9.cpp">snip9.cpp</a>: regex_split
<p><a href="example/snippets/regex_split_example_2.cpp">regex_split_example_2.cpp</a>: regex_split
example: spit out linked URL's.</p>
<hr>