diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 2001-04-24 23:17:30 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 2001-04-24 23:17:30 +0000 |
commit | 3f23fcd0ab6bb481712644fbb02f9fc0613f48de (patch) | |
tree | 07c5926b7160474e1912439b5d14a611a0a23175 /TAO/docs | |
parent | cea8f8e4ce0abde41c456856bcb281ec3f6db396 (diff) | |
download | ATCD-3f23fcd0ab6bb481712644fbb02f9fc0613f48de.tar.gz |
ChangeLogTag:Tue Apr 24 06:28:00 2001 Douglas C. Schmidt <schmidt@tango.doc.wustl.edu>
Diffstat (limited to 'TAO/docs')
3 files changed, 7 insertions, 11 deletions
diff --git a/TAO/docs/tutorials/Quoter/On_Demand_Activation/Stock_Factory_Locator_i.cpp b/TAO/docs/tutorials/Quoter/On_Demand_Activation/Stock_Factory_Locator_i.cpp index 16d41cb237f..746f3339301 100644 --- a/TAO/docs/tutorials/Quoter/On_Demand_Activation/Stock_Factory_Locator_i.cpp +++ b/TAO/docs/tutorials/Quoter/On_Demand_Activation/Stock_Factory_Locator_i.cpp @@ -1,6 +1,4 @@ -// // $Id$ -// #include "Stock_Factory_Locator_i.h" #include "Stock_Factory_i.h" diff --git a/TAO/docs/tutorials/Quoter/On_Demand_Activation/Stock_Factory_i.cpp b/TAO/docs/tutorials/Quoter/On_Demand_Activation/Stock_Factory_i.cpp index 7e9f1245fa9..b32249cb8fd 100644 --- a/TAO/docs/tutorials/Quoter/On_Demand_Activation/Stock_Factory_i.cpp +++ b/TAO/docs/tutorials/Quoter/On_Demand_Activation/Stock_Factory_i.cpp @@ -1,6 +1,4 @@ -// // $Id$ -// #include "Stock_Factory_i.h" @@ -13,11 +11,11 @@ Quoter_Stock_Factory_i::get_stock (const char *symbol) throw (Quoter::Invalid_Stock_Symbol) { if (strcmp (symbol, "RHAT") == 0) { - Quoter_Stock_i *rhat_ = new Quoter_Stock_i ("RHAT", "RedHat, Inc.", 210); - return rhat_->_this (); + Quoter_Stock_i *rhat = new Quoter_Stock_i ("RHAT", "RedHat, Inc.", 210); + return rhat->_this (); } else if (strcmp (symbol, "MSFT") == 0) { - Quoter_Stock_i *msft_ = new Quoter_Stock_i ("MSFT", "Microsoft, Inc.", 91); - return msft_->_this (); + Quoter_Stock_i *msft = new Quoter_Stock_i ("MSFT", "Microsoft, Inc.", 91); + return msft->_this (); } throw Quoter::Invalid_Stock_Symbol (); } diff --git a/TAO/docs/tutorials/Quoter/On_Demand_Activation/index.html b/TAO/docs/tutorials/Quoter/On_Demand_Activation/index.html index 149e68dbbb1..2b68883ff55 100644 --- a/TAO/docs/tutorials/Quoter/On_Demand_Activation/index.html +++ b/TAO/docs/tutorials/Quoter/On_Demand_Activation/index.html @@ -246,8 +246,8 @@ <a href="../AMI/client.cpp">client.cpp</a>. As before the following files are provided. <a href="../AMI/Quoter.idl">Quoter.idl</a> - <a href="../Simple/Server/Stock_i.h">Stock_i.h</a> - <a href="../Simple/Server/Stock_i.cpp">Stock_i.cpp</a> + <a href="../On_Demand_Activation/Stock_i.h">Stock_i.h</a> + <a href="../On_Demand_Activation/Stock_i.cpp">Stock_i.cpp</a> <a href="Stock_Factory_i.h">Stock_Factory_i.h</a> <a href="Stock_Factory_i.cpp">Stock_Factory_i.cpp</a> <a href="../AMI/Handler_i.h">Handler_i.h</a> and @@ -269,7 +269,7 @@ <address><a href="mailto:pgontla@ece.uci.edu">Priyanka Gontla</a></address> <!-- Created: Mon May 1 11:08:56 PDT 2000 --> <!-- hhmts start --> -Last modified: Sun Apr 1 18:05:27 PDT 2001 +Last modified: Tue Apr 24 17:50:17 CDT 2001 <!-- hhmts end --> </body> </html> |