1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
include(definitions.m4)dnl
define(__TOC_START, [[
</DIV>
<TABLE border=0 cellpadding=0 cellspacing=10>
<TR>
<TD WIDTH=15 valign=center>
<IMG width=34 height=34 src="../images/toc.png" alt="Main index" align=top border=0>
</TD>
<TD valign=center><DIV class="toc-header1">
<A class="toc1" href="../reference-manual/index.html" target="_top">
back to main index
</A></DIV>
</TD>
</TR>
]])dnl
define(__TOC_END, [[
</TABLE>
<DIV class="normal">
]])dnl
define(__PAGE, [[<!-- -Page $1---------------------------------------------------- -->
<TR>
<TD WIDTH=15 valign=center>
<IMG width=34 height=34 src="../images/toc.png" align=top border=0>
</TD>
<TD valign=center><DIV class="toc-header1">
<A class="toc1" href="$3">
$2
</A></DIV>
</TD>
</TR>]])dnl
define(__PAGE_START, [[
<TR>
<TD WIDTH=15></TD>
<TD>
<TABLE border=0 cellpadding=0 cellspacing=0>]])dnl
define(__PAGE_END, [[
</TABLE>
</TD>
</TR>]])dnl
define(__PARAGRAPH, [[
<TR>
<TD WIDTH=50><DIV class="toc-number$1">
$2
</DIV></TD>
<TD><DIV class="toc-header$1">
<A class="toc" HREF="$4">
$3
</A></DIV>
</TD>
</TR>]])dnl
dnl#
dnl# Start of document
dnl#
__HTMLHEADER
__PAGEHEADER
__PAGESTART
<P>Welcome to the tutorial of libcwd, an Object Oriented debugging support library for C++ developers.</P>
<H1>Table of Contents</H1>
__TOC_START
__PAGE(1, [[Introduction]], intro.html)
__PAGE(2, [[Tutorial 1 : Hello World]], tut1.html)
__PAGE(3, [[Tutorial 2 : Creating Your Own Debug Channels]], tut2.html)
__PAGE(4, [[Tutorial 3 : Setting The <CODE>ostream</CODE>]], tut3.html)
__PAGE(5, [[Tutorial 4 : Management Of <CODE>CWDEBUG</CODE>]], tut4.html)
__PAGE(6, [[Tutorial 5 : Advanced Examples]], tut5.html)
__PAGE_START
__PARAGRAPH(2f, 5.1, [[Running Over All Debug Channels]], [[tut5.html#Running]])
__PARAGRAPH(2, 5.2, [[Debug Channels And Name Spaces]], [[tut5.html#Debug]])
__PARAGRAPH(2, 5.3, [[Combining Channels]], [[tut5.html#Combining]])
__PARAGRAPH(2, 5.4, [[Formatting Debug Output]], [[tut5.html#Formatting]])
__PARAGRAPH(3, 5.4.1, [[Control Flags]], [[tut5.html#Control]])
__PARAGRAPH(3, 5.4.2, [[Methods Of The Debug Object]], [[tut5.html#Methods]])
__PAGE_END
__PAGE(7, [[Tutorial 6 : The Debugging Of Dynamic Memory Allocations]], tut6.html)
__PAGE(8, [[Tutorial 7 : Advanced Examples]], tut7.html)
__PAGE_START
__PARAGRAPH(2f, 7.1, [[Removing Allocations From The Allocated Memory Overview]], [[tut7.html#Removing]])
__PARAGRAPH(2, 7.2, [[Retrieving Information About Memory Allocations]], [[tut7.html#Retrieving]])
__PARAGRAPH(2, 7.3, [[Memory Leak Detection]], [[tut7.html#Memory]])
__PAGE_END
__PAGE(9, [[Tutorial 8 : Debugging Threaded Applications]], tut8.html)
__TOC_END
__PAGEEND
__PAGEFOOTER
__HTMLFOOTER
|