summaryrefslogtreecommitdiff
path: root/docs/tutorials/007
diff options
context:
space:
mode:
authorjcej <jcej@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-04-03 21:56:35 +0000
committerjcej <jcej@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-04-03 21:56:35 +0000
commitb08c0e144bfc913b4694a91199b472f44cc97ea8 (patch)
treea851f12c57bf0017e2362b6ee7d9d1d60e4354b6 /docs/tutorials/007
parentf242d9c2195a15f3e22e691280704abd31ab8440 (diff)
downloadATCD-b08c0e144bfc913b4694a91199b472f44cc97ea8.tar.gz
*** empty log message ***
Diffstat (limited to 'docs/tutorials/007')
-rw-r--r--docs/tutorials/007/page03.html6
-rw-r--r--docs/tutorials/007/page04.html2
-rw-r--r--docs/tutorials/007/page05.html6
-rw-r--r--docs/tutorials/007/page07.html4
-rw-r--r--docs/tutorials/007/page08.html2
5 files changed, 10 insertions, 10 deletions
diff --git a/docs/tutorials/007/page03.html b/docs/tutorials/007/page03.html
index 2040717c810..fd94b553c56 100644
--- a/docs/tutorials/007/page03.html
+++ b/docs/tutorials/007/page03.html
@@ -28,15 +28,15 @@
ACE objects and the headers where they can be found. In general,
the ACE object ACE_Foobar will be found in ace/Foobar.h. */</font>
-<font color=blue>#include</font> "<font color=green>ace/Acceptor.h</font>"
+<font color=blue>#include</font> "<A HREF="../../../ace/Acceptor.h">ace/Acceptor.h</A>"
<font color=blue>#if !defined</font> (<font color=purple>ACE_LACKS_PRAGMA_ONCE</font>)
-# pragma once
+<font color=blue># pragma</font> <font color=purple>once</font>
<font color=blue>#endif</font> <font color=red>/* ACE_LACKS_PRAGMA_ONCE */</font>
<font color=red>/* Since we want to work with sockets, we'll need a SOCK_Acceptor to
allow the clients to connect to us. */</font>
-<font color=blue>#include</font> "<font color=green>ace/SOCK_Acceptor.h</font>"
+<font color=blue>#include</font> "<A HREF="../../../ace/SOCK_Acceptor.h">ace/SOCK_Acceptor.h</A>"
<font color=red>/* The Client_Handler object we develop will be used to handle clients
once they're connected. The ACE_Acceptor&lt;> template's first
diff --git a/docs/tutorials/007/page04.html b/docs/tutorials/007/page04.html
index df7d777c660..dbd16330e07 100644
--- a/docs/tutorials/007/page04.html
+++ b/docs/tutorials/007/page04.html
@@ -34,7 +34,7 @@ I finally had enough code to move it out of the header.
<font color=red>/* Construct ourselves with a reference to somebody else' Thread_Pool.
Obvioulsy our concurrency strategy is "<font color=green>thread_pool_</font>" at this point. */</font>
<font color=#008888>Client_Acceptor::Client_Acceptor</font> (Thread_Pool &thread_pool)
- : concurrency_ (thread_pool),
+ : concurrency_ (thread_pool_),
the_thread_pool_ (thread_pool)
{
}
diff --git a/docs/tutorials/007/page05.html b/docs/tutorials/007/page05.html
index 2a62b00a0a2..9c2264e6e7d 100644
--- a/docs/tutorials/007/page05.html
+++ b/docs/tutorials/007/page05.html
@@ -35,13 +35,13 @@ is next.
a derivative of ACE_Event_Handler) some of those details are
handled for you. */</font>
-<font color=blue>#include</font> "<font color=green>ace/Svc_Handler.h</font>"
+<font color=blue>#include</font> "<A HREF="../../../ace/Svc_Handler.h">ace/Svc_Handler.h</A>"
<font color=blue>#if !defined</font> (<font color=purple>ACE_LACKS_PRAGMA_ONCE</font>)
-# pragma once
+<font color=blue># pragma</font> <font color=purple>once</font>
<font color=blue>#endif</font> <font color=red>/* ACE_LACKS_PRAGMA_ONCE */</font>
-<font color=blue>#include</font> "<font color=green>ace/SOCK_Stream.h</font>"
+<font color=blue>#include</font> "<A HREF="../../../ace/SOCK_Stream.h">ace/SOCK_Stream.h</A>"
class Client_Acceptor;
class Thread_Pool;
diff --git a/docs/tutorials/007/page07.html b/docs/tutorials/007/page07.html
index 0364eccd176..7b31b7d09e7 100644
--- a/docs/tutorials/007/page07.html
+++ b/docs/tutorials/007/page07.html
@@ -29,10 +29,10 @@ to make so few changes to the rest of the code.
<font color=red>/* In order to implement a thread pool, we have to have an object that
can create a thread. The ACE_Task&lt;> is the basis for doing just
such a thing. */</font>
-<font color=blue>#include</font> "<font color=green>ace/Task.h</font>"
+<font color=blue>#include</font> "<A HREF="../../../ace/Task.h">ace/Task.h</A>"
<font color=blue>#if !defined</font> (<font color=purple>ACE_LACKS_PRAGMA_ONCE</font>)
-# pragma once
+<font color=blue># pragma</font> <font color=purple>once</font>
<font color=blue>#endif</font> <font color=red>/* ACE_LACKS_PRAGMA_ONCE */</font>
<font color=red>/* We need a forward reference for ACE_Event_Handler so that our
diff --git a/docs/tutorials/007/page08.html b/docs/tutorials/007/page08.html
index 18ee6968ece..f3b7a1d1b6e 100644
--- a/docs/tutorials/007/page08.html
+++ b/docs/tutorials/007/page08.html
@@ -25,7 +25,7 @@ where we have the Thread_Pool object implementation.
<font color=red>/* We need this header so that we can invoke handle_input() on the
objects we dequeue. */</font>
-<font color=blue>#include</font> "<font color=green>ace/Event_Handler.h</font>"
+<font color=blue>#include</font> "<A HREF="../../../ace/Event_Handler.h">ace/Event_Handler.h</A>"
<font color=red>/* All we do here is initialize our active thread counter. */</font>
<font color=#008888>Thread_Pool::Thread_Pool</font> (void)