summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1999-06-16 08:26:59 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1999-06-16 08:26:59 +0000
commit6e4696115b3bd0a02b1d52c137c110189b5c01db (patch)
tree11e8fc0bbf2eea597f372195d38856cd9470dd38
parent1c6f40db867b3368b9f513c342debd2dc717126b (diff)
downloadATCD-6e4696115b3bd0a02b1d52c137c110189b5c01db.tar.gz
.
-rw-r--r--TAO/docs/compiler.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/TAO/docs/compiler.html b/TAO/docs/compiler.html
index 2f2872de23f..457bf7fb445 100644
--- a/TAO/docs/compiler.html
+++ b/TAO/docs/compiler.html
@@ -30,17 +30,17 @@ appending the following suffixes (see the list of TAO's IDL compiler
these files:) <P>
<UL>
-<LI> <EM>Client stubs</EM> -- <tt>C.h</tt>, <tt>C.i</tt>, and <tt>C.cpp</tt>
-<LI> <EM>Server skeletons</EM> -- <tt>S.h</tt>, <tt>S.i</tt>, and
-<tt>S.cpp</tt>
-<LI> <EM>Server skeleton templates </EM> -- <tt>S_T.h</tt>, <tt>S_T.i</tt>,
-and <tt>S_T.cpp</tt>
+<LI> <EM>Client stubs</EM> -- <tt>*C.h</tt>, <tt>*C.i</tt>, and <tt>*C.cpp</tt>
+<LI> <EM>Server skeletons</EM> -- <tt>*S.h</tt>, <tt>*S.i</tt>, and
+<tt>*S.cpp</tt>
+<LI> <EM>Server skeleton templates </EM> -- <tt>*S_T.h</tt>, <tt>S_T.i</tt>,
+and <tt>*S_T.cpp</tt>
</UL>
TAO's IDL compiler creates separate <TT>*.i</TT> and <TT>*S_T.*</TT>
files to improve the performance of the generated code. Fortunately,
you only need to <CODE>#include</CODE> the client stubs declared in
-the <tt>C.h</tt> file and the skeletons in the <tt>S.h</tt> file in
+the <tt>*C.h</tt> file and the skeletons in the <tt>*S.h</tt> file in
your code. <P>
<HR><P>