diff options
author | kirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-06-18 02:28:54 +0000 |
---|---|---|
committer | kirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-06-18 02:28:54 +0000 |
commit | 35eb256291030fbf067858f0101ba6126aa9fd81 (patch) | |
tree | a54c521889b30357cf371edf4a4533d76860ddf5 /TAO/examples | |
parent | 8c120a323e67256d8f34d665fdaf05892662358f (diff) | |
download | ATCD-35eb256291030fbf067858f0101ba6126aa9fd81.tar.gz |
Added throw spec macros
Diffstat (limited to 'TAO/examples')
-rw-r--r-- | TAO/examples/Simple/echo/Echo_i.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/TAO/examples/Simple/echo/Echo_i.h b/TAO/examples/Simple/echo/Echo_i.h index d7d5498b70d..b22f3d7ebb6 100644 --- a/TAO/examples/Simple/echo/Echo_i.h +++ b/TAO/examples/Simple/echo/Echo_i.h @@ -41,14 +41,17 @@ public: // Destructor. virtual Echo::List *echo_list (const char *mesg, - CORBA::Environment &env); + CORBA::Environment &env) + ACE_THROW_SPEC (CORBA::SystemException); // Return the mesg string back from the server. virtual char *echo_string (const char *mesg, - CORBA::Environment &env); + CORBA::Environment &env) + ACE_THROW_SPEC (CORBA::SystemException); // Return the mesg string back from the server. - virtual void shutdown (CORBA::Environment &env); + virtual void shutdown (CORBA::Environment &env) + ACE_THROW_SPEC (CORBA::SystemException); // Shutdown the server. void orb (CORBA::ORB_ptr o); |