summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2006-10-03 17:24:01 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2006-10-03 17:24:01 +0000
commit01879a9782a694dc998994f5a98b5f5697c482ef (patch)
tree453efd045211275052d6a4a2b7170a0f1ca1310f
parente3806cdc92c2af71418552fdb541ac9f7f9a6a15 (diff)
downloadATCD-01879a9782a694dc998994f5a98b5f5697c482ef.tar.gz
Tue Oct 3 17:23:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
-rw-r--r--TAO/docs/tutorials/Quoter/Simple/Client/index.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/docs/tutorials/Quoter/Simple/Client/index.html b/TAO/docs/tutorials/Quoter/Simple/Client/index.html
index 9aef82da78d..fbe03549e99 100644
--- a/TAO/docs/tutorials/Quoter/Simple/Client/index.html
+++ b/TAO/docs/tutorials/Quoter/Simple/Client/index.html
@@ -97,7 +97,7 @@ $ $ACE_ROOT/TAO/TAO_IDL/tao_idl Quoter.idl
</P>
<P>TAO generates 9 files for each IDL file.
- <CODE>QuoterC.h</CODE>, <CODE>QuoterC.i</CODE>
+ <CODE>QuoterC.h</CODE>, <CODE>QuoterC.inl</CODE>
and <CODE>QuoterC.cpp</CODE> contain the client-side interfaces.
Notice that the inline functions are in a separate file so you
can optionally compile them out-of-line for smaller code.
@@ -105,13 +105,13 @@ $ $ACE_ROOT/TAO/TAO_IDL/tao_idl Quoter.idl
generated from <CODE>QuoterC.cpp</CODE>.
</P>
<P>
- Similarly, <CODE>QuoterS.h</CODE>, <CODE>QuoterS.i</CODE>
+ Similarly, <CODE>QuoterS.h</CODE>, <CODE>QuoterS.inl</CODE>
and <CODE>QuoterS.cpp</CODE> contain the server-side
<EM>skeletons</EM>. Servers must link the object files generated
from <CODE>QuoterS.cpp</CODE> <STRONG>and</STRONG> <CODE>QuoterC.cpp</CODE>.
</P>
<P>
- Finally, <CODE>QuoterS_T.h</CODE>, <CODE>QuoterS_T.i</CODE>
+ Finally, <CODE>QuoterS_T.h</CODE>, <CODE>QuoterS_T.inl</CODE>
and <CODE>QuoterS_T.cpp</CODE> contain the <EM>TIE</EM> classes.
These are the standard (after the CORBA 2.2 spec) skeletons based
on composition instead of inheritance.