summaryrefslogtreecommitdiff
path: root/TAO/examples/Simple/chat/Broadcaster_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/Simple/chat/Broadcaster_i.h')
-rw-r--r--TAO/examples/Simple/chat/Broadcaster_i.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/TAO/examples/Simple/chat/Broadcaster_i.h b/TAO/examples/Simple/chat/Broadcaster_i.h
index 822a93a4e10..9ff5d1debb7 100644
--- a/TAO/examples/Simple/chat/Broadcaster_i.h
+++ b/TAO/examples/Simple/chat/Broadcaster_i.h
@@ -45,16 +45,16 @@ public:
// Destructor.
virtual void add (Receiver_ptr receiver,
- const char *nickname,
- CORBA::Environment &ACE_TRY_ENV)
+ const char *nickname
+ TAO_ENV_ARG_DECL)
ACE_THROW_SPEC ((
CORBA::SystemException,
Broadcaster::CannotAdd
));
// Saves receiver references in a list.
- virtual void remove (Receiver_ptr receiver,
- CORBA::Environment &ACE_TRY_ENV)
+ virtual void remove (Receiver_ptr receiver
+ TAO_ENV_ARG_DECL)
ACE_THROW_SPEC ((
CORBA::SystemException,
Broadcaster::CannotRemove
@@ -62,8 +62,8 @@ public:
// Removes receiver references from the list.
virtual void say (Receiver_ptr receiver,
- const char *text,
- CORBA::Environment &ACE_TRY_ENV)
+ const char *text
+ TAO_ENV_ARG_DECL)
ACE_THROW_SPEC ((
CORBA::SystemException
));
@@ -73,8 +73,8 @@ public:
TAO_ORB_Manager orb_manager_;
// The ORB manager.
- void broadcast (const char* text,
- CORBA::Environment &ACE_TRY_ENV);
+ void broadcast (const char* text
+ TAO_ENV_ARG_DECL);
// Broadcasts the text to all registered clients.
class Receiver_Data