summaryrefslogtreecommitdiff
path: root/TAO/examples/Simple/echo
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-02-12 09:23:36 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-02-12 09:23:36 +0000
commitcd82c8b31f82f535c69a3c4f3c86dd9c9e1123dc (patch)
treec065201a8b02e5cc1efe8f37480fc34e375478f8 /TAO/examples/Simple/echo
parentb65364353b8af34317a0d48ba47cecd3c48d5c40 (diff)
downloadATCD-cd82c8b31f82f535c69a3c4f3c86dd9c9e1123dc.tar.gz
Mon Feb 12 09:20:14 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/examples/Simple/echo')
-rw-r--r--TAO/examples/Simple/echo/Echo_i.cpp3
-rw-r--r--TAO/examples/Simple/echo/Echo_i.h9
2 files changed, 3 insertions, 9 deletions
diff --git a/TAO/examples/Simple/echo/Echo_i.cpp b/TAO/examples/Simple/echo/Echo_i.cpp
index ccb84e7bb07..f74fbf70e90 100644
--- a/TAO/examples/Simple/echo/Echo_i.cpp
+++ b/TAO/examples/Simple/echo/Echo_i.cpp
@@ -28,7 +28,6 @@ Echo_i::orb (CORBA::ORB_ptr o)
Echo::List *
Echo_i::echo_list (const char *)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
Echo::List_var list;
@@ -61,7 +60,6 @@ Echo_i::echo_list (const char *)
char *
Echo_i::echo_string (const char *mesg)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
// The pointer mesg was NULL, return.
if (mesg == 0)
@@ -87,7 +85,6 @@ Echo_i::echo_string (const char *mesg)
void
Echo_i::shutdown (void)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
ACE_DEBUG ((LM_DEBUG,
"\n%s\n",
diff --git a/TAO/examples/Simple/echo/Echo_i.h b/TAO/examples/Simple/echo/Echo_i.h
index 1b5628a6a0e..2ec327e5f8d 100644
--- a/TAO/examples/Simple/echo/Echo_i.h
+++ b/TAO/examples/Simple/echo/Echo_i.h
@@ -40,16 +40,13 @@ public:
~Echo_i (void);
// Destructor.
- virtual Echo::List *echo_list (const char *mesg)
- ACE_THROW_SPEC ((CORBA::SystemException));
+ virtual Echo::List *echo_list (const char *mesg);
// Return the mesg string back from the server.
- virtual char *echo_string (const char *mesg)
- ACE_THROW_SPEC ((CORBA::SystemException));
+ virtual char *echo_string (const char *mesg);
// Return the mesg string back from the server.
- virtual void shutdown (void)
- ACE_THROW_SPEC ((CORBA::SystemException));
+ virtual void shutdown (void);
// Shutdown the server.
void orb (CORBA::ORB_ptr o);