diff options
author | bala <balanatarajan@users.noreply.github.com> | 2002-11-25 20:11:46 +0000 |
---|---|---|
committer | bala <balanatarajan@users.noreply.github.com> | 2002-11-25 20:11:46 +0000 |
commit | c05a3903e16b8cbc2e2e4aaacb19ad1d3ed508b7 (patch) | |
tree | 8ffd1da6e147f4c7a1392f063377499d39e2e680 /TAO/docs | |
parent | e280cf3d1f11985b8a844621f09c8262b5e34fff (diff) | |
download | ATCD-c05a3903e16b8cbc2e2e4aaacb19ad1d3ed508b7.tar.gz |
ChangeLogTag: Mon Nov 25 15:09:50 2002 Balachandran Natarajan <bala@isis-server.isis.vanderbilt.edu>
Diffstat (limited to 'TAO/docs')
-rw-r--r-- | TAO/docs/tutorials/Quoter/AMI/Handler_i.cpp | 46 | ||||
-rw-r--r-- | TAO/docs/tutorials/Quoter/AMI/Handler_i.h | 16 |
2 files changed, 62 insertions, 0 deletions
diff --git a/TAO/docs/tutorials/Quoter/AMI/Handler_i.cpp b/TAO/docs/tutorials/Quoter/AMI/Handler_i.cpp index c21450fa63a..269bb42e145 100644 --- a/TAO/docs/tutorials/Quoter/AMI/Handler_i.cpp +++ b/TAO/docs/tutorials/Quoter/AMI/Handler_i.cpp @@ -33,3 +33,49 @@ Single_Query_Stock_Handler_i:: << endl; (*this->response_count_)++; } + + +void +Single_Query_Stock_Handler_i::get_symbol (const char *) + throw (CORBA::SystemException) +{ + throw CORBA::NO_IMPLEMENT (); +} + +void +Single_Query_Stock_Handler_i:: + get_symbol_excep (Quoter::AMI_StockExceptionHolder *) + throw (CORBA::SystemException) +{ + throw CORBA::NO_IMPLEMENT (); +} + +void +Single_Query_Stock_Handler_i::get_full_name (const char *) + throw (CORBA::SystemException) +{ + throw CORBA::NO_IMPLEMENT (); +} + +void +Single_Query_Stock_Handler_i:: + get_full_name_excep (Quoter::AMI_StockExceptionHolder *) + throw (CORBA::SystemException) +{ + throw CORBA::NO_IMPLEMENT (); +} + +void +Single_Query_Stock_Handler_i::price (double) + throw (CORBA::SystemException) +{ + throw CORBA::NO_IMPLEMENT (); +} + +void +Single_Query_Stock_Handler_i:: + price_excep (Quoter::AMI_StockExceptionHolder *) + throw (CORBA::SystemException) +{ + throw CORBA::NO_IMPLEMENT (); +} diff --git a/TAO/docs/tutorials/Quoter/AMI/Handler_i.h b/TAO/docs/tutorials/Quoter/AMI/Handler_i.h index 0cfa8662411..7745ac0bec3 100644 --- a/TAO/docs/tutorials/Quoter/AMI/Handler_i.h +++ b/TAO/docs/tutorials/Quoter/AMI/Handler_i.h @@ -20,7 +20,23 @@ public: void get_price_and_names_excep (Quoter::AMI_Single_Query_StockExceptionHolder_ptr) throw (CORBA::SystemException); + void get_symbol(const char *) + throw (CORBA::SystemException); + void get_symbol_excep (Quoter::AMI_StockExceptionHolder *) + throw (CORBA::SystemException); + + void get_full_name (const char *) + throw (CORBA::SystemException); + void get_full_name_excep (Quoter::AMI_StockExceptionHolder *) + throw (CORBA::SystemException); + + void price (double) + throw (CORBA::SystemException); + void price_excep (Quoter::AMI_StockExceptionHolder *) + throw (CORBA::SystemException); + private: + int *response_count_; }; |