summaryrefslogtreecommitdiff
path: root/CIAO/examples/Hello/Sender/Sender_exec.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/examples/Hello/Sender/Sender_exec.cpp')
-rw-r--r--CIAO/examples/Hello/Sender/Sender_exec.cpp23
1 files changed, 0 insertions, 23 deletions
diff --git a/CIAO/examples/Hello/Sender/Sender_exec.cpp b/CIAO/examples/Hello/Sender/Sender_exec.cpp
index ad4a4143b8d..7e41fa3efeb 100644
--- a/CIAO/examples/Hello/Sender/Sender_exec.cpp
+++ b/CIAO/examples/Hello/Sender/Sender_exec.cpp
@@ -6,7 +6,6 @@ namespace CIDL_Sender_Impl
{
char*
Message_Impl::get_message ()
- ACE_THROW_SPEC ((CORBA::SystemException))
{
ACE_DEBUG ((LM_DEBUG, "Sender sending out message: [%s]\n", component_.message_.in ()));
return CORBA::string_dup (component_.message_.in ());
@@ -18,21 +17,18 @@ namespace CIDL_Sender_Impl
void
Sender_exec_i::local_message (const char * local_message)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
message_ = CORBA::string_dup (local_message);
}
char *
Sender_exec_i::local_message ()
- ACE_THROW_SPEC ((CORBA::SystemException))
{
return CORBA::string_dup (message_.in ());
}
void
Sender_exec_i::hertz (CORBA::Long hertz)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
this->hertz_ = hertz;
ACE_DEBUG ((LM_DEBUG, "Sender_exec_i::Hertz:%d\n", this->hertz_));
@@ -40,14 +36,12 @@ namespace CIDL_Sender_Impl
CORBA::Long
Sender_exec_i::hertz ()
- ACE_THROW_SPEC ((CORBA::SystemException))
{
return this->hertz_;
}
::Hello::COLOR_SELECTION
Sender_exec_i::color ()
- ACE_THROW_SPEC ((CORBA::SystemException))
{
// Your code here.
return this->color_;
@@ -56,14 +50,12 @@ namespace CIDL_Sender_Impl
void
Sender_exec_i::color (
::Hello::COLOR_SELECTION color)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
this->color_ = color;
}
Hello::CCM_ReadMessage_ptr
Sender_exec_i::get_push_message ()
- ACE_THROW_SPEC ((CORBA::SystemException))
{
ACE_DEBUG ((LM_DEBUG,
"Sender_exec.i::get_push_message called\n "));
@@ -72,7 +64,6 @@ namespace CIDL_Sender_Impl
void
Sender_exec_i::start ()
- ACE_THROW_SPEC ((CORBA::SystemException))
{
Hello::TimeOut_var event = new OBV_Hello::TimeOut;
event->data ("ACE/TAO/CIAO");
@@ -107,8 +98,6 @@ namespace CIDL_Sender_Impl
void
Sender_exec_i::set_session_context (Components::SessionContext_ptr ctx)
- ACE_THROW_SPEC ((CORBA::SystemException,
- Components::CCMException))
{
ACE_DEBUG ((LM_DEBUG, "Sender_exec_i::set_session_context\n"));
@@ -123,8 +112,6 @@ namespace CIDL_Sender_Impl
void
Sender_exec_i::ciao_preactivate ()
- ACE_THROW_SPEC ((CORBA::SystemException,
- Components::CCMException))
{
ACE_DEBUG ((LM_DEBUG,
"Sender_exec_i::ciao_preactivate\n"));
@@ -132,8 +119,6 @@ namespace CIDL_Sender_Impl
void
Sender_exec_i::ccm_activate ()
- ACE_THROW_SPEC ((CORBA::SystemException,
- Components::CCMException))
{
ACE_DEBUG ((LM_DEBUG,
"Sender_exec_i::ccm_activate\n"));
@@ -141,8 +126,6 @@ namespace CIDL_Sender_Impl
void
Sender_exec_i::ciao_postactivate ()
- ACE_THROW_SPEC ((CORBA::SystemException,
- Components::CCMException))
{
ACE_DEBUG ((LM_DEBUG,
"Sender_exec_i::ciao_postactivate\n"));
@@ -150,16 +133,12 @@ namespace CIDL_Sender_Impl
void
Sender_exec_i::ccm_passivate ()
- ACE_THROW_SPEC ((CORBA::SystemException,
- Components::CCMException))
{
ACE_DEBUG ((LM_DEBUG, "Sender_exec_i::ccm_passivate\n"));
}
void
Sender_exec_i::ccm_remove ()
- ACE_THROW_SPEC ((CORBA::SystemException,
- Components::CCMException))
{
ACE_DEBUG ((LM_DEBUG, "Sender_exec_i::ccm_remove\n"));
}
@@ -174,8 +153,6 @@ namespace CIDL_Sender_Impl
::Components::EnterpriseComponent_ptr
SenderHome_exec_i::create ()
- ACE_THROW_SPEC ((CORBA::SystemException,
- Components::CCMException))
{
ACE_DEBUG ((LM_DEBUG, "(%P|%t) creating SenderHome \n"));
return new Sender_exec_i;