summaryrefslogtreecommitdiff
path: root/TAO/DevGuideExamples/EventServices/RTEC_Federated/EchoEventConsumer_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/DevGuideExamples/EventServices/RTEC_Federated/EchoEventConsumer_i.cpp')
-rw-r--r--TAO/DevGuideExamples/EventServices/RTEC_Federated/EchoEventConsumer_i.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/TAO/DevGuideExamples/EventServices/RTEC_Federated/EchoEventConsumer_i.cpp b/TAO/DevGuideExamples/EventServices/RTEC_Federated/EchoEventConsumer_i.cpp
index 19cb419cd8a..cdc851d54fe 100644
--- a/TAO/DevGuideExamples/EventServices/RTEC_Federated/EchoEventConsumer_i.cpp
+++ b/TAO/DevGuideExamples/EventServices/RTEC_Federated/EchoEventConsumer_i.cpp
@@ -22,7 +22,6 @@ EchoEventConsumer_i::EchoEventConsumer_i(
// Implement the push() operation.
void EchoEventConsumer_i::push(const RtecEventComm::EventSet& events)
- throw(CORBA::SystemException)
{
// Loop through the events, looking for shutdown events.
for (u_int i = 0; i < events.length (); ++i) {
@@ -47,7 +46,6 @@ void EchoEventConsumer_i::push(const RtecEventComm::EventSet& events)
// Implement the disconnect_push_consumer() operation.
void EchoEventConsumer_i::disconnect_push_consumer()
- throw(CORBA::SystemException)
{
// Deactivate this object.
CORBA::Object_var obj = orb_->resolve_initial_references("POACurrent");