summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-09-23 07:53:07 +0000
committernanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-09-23 07:53:07 +0000
commitf7a2115a561e6dd3dcac983a95080252d13a2d71 (patch)
tree39136877d278e86661c16ca21e524a8c948150d9
parentfa53089b1f86033e6c7dfe39416dbee0bca5680e (diff)
downloadATCD-f7a2115a561e6dd3dcac983a95080252d13a2d71.tar.gz
*** empty log message ***
-rw-r--r--TAO/docs/Smart_Proxies.html12
1 files changed, 8 insertions, 4 deletions
diff --git a/TAO/docs/Smart_Proxies.html b/TAO/docs/Smart_Proxies.html
index f105e8c8a06..0664f3f2a75 100644
--- a/TAO/docs/Smart_Proxies.html
+++ b/TAO/docs/Smart_Proxies.html
@@ -19,10 +19,14 @@ bgcolor="#ffffff">
<li><a href="#ref">References</a>
</ul>
+<!-- @@ Kirthika, can you please add more html tags into the -->
+<!-- document so it can be more readable in a browser? -->
+
<h2><a name="Introduction">Introduction</a></h2>
-<P>Smart Proxies (or Smart Stubs) are basically proxy classes which are
-user defined.
+<P>Smart Proxies (or Smart Stubs) are basically user-defined proxy
+classes.</p>
+
<P>By default, the IDL compiler generates proxy classes for IDL interfaces.
The proxy is an exact image of the target object on whom the
invocations are to be made by the client, i.e. it has the same methods
@@ -253,7 +257,7 @@ public:
// Interface operations...
int method ()
{
- this->proxy_.method ();
+ this->proxy_->method ();
}
...
// @@@ Not sure how to handle support for native exception (i.e., no
@@ -283,7 +287,7 @@ class VerySmartProxy : public DefaultSmartProxy
int method ()
{
print "Yahoo, I am so smart"
- this->proxy_.method ();
+ this->proxy_->method ();
}
}