summaryrefslogtreecommitdiff
path: root/TAO/tests/NestedUpcall/Reactor/reactor_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/NestedUpcall/Reactor/reactor_i.h')
-rw-r--r--TAO/tests/NestedUpcall/Reactor/reactor_i.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/TAO/tests/NestedUpcall/Reactor/reactor_i.h b/TAO/tests/NestedUpcall/Reactor/reactor_i.h
index 97e6759cf3c..bc7b11c391a 100644
--- a/TAO/tests/NestedUpcall/Reactor/reactor_i.h
+++ b/TAO/tests/NestedUpcall/Reactor/reactor_i.h
@@ -18,22 +18,18 @@ public:
// Destructor.
virtual CORBA::Long register_handler(EventHandler_ptr eh,
- CORBA::Environment &env)
- ACE_THROW_SPEC ((CORBA::SystemException));
+ CORBA::Environment &env);
// Register (with nothing...it's an example!)
- virtual void set_value (CORBA::Environment &env)
- ACE_THROW_SPEC ((CORBA::SystemException));
+ virtual void set_value (CORBA::Environment &env);
virtual CORBA::UShort decrement (EventHandler_ptr eh,
CORBA::UShort num,
- CORBA::Environment &env)
- ACE_THROW_SPEC ((CORBA::SystemException));
+ CORBA::Environment &env);
// deccrement <num> by calling decrement thru <eh> until zero is
// reached, then return.
- virtual void stop (CORBA::Environment &env)
- ACE_THROW_SPEC ((CORBA::SystemException));
+ virtual void stop (CORBA::Environment &env);
// Stops the reactor.
};