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.h19
1 files changed, 4 insertions, 15 deletions
diff --git a/TAO/tests/NestedUpcall/Reactor/reactor_i.h b/TAO/tests/NestedUpcall/Reactor/reactor_i.h
index 22efef2f87b..bc7b11c391a 100644
--- a/TAO/tests/NestedUpcall/Reactor/reactor_i.h
+++ b/TAO/tests/NestedUpcall/Reactor/reactor_i.h
@@ -17,31 +17,20 @@ public:
virtual ~Reactor_i (void);
// Destructor.
- void be_quiet (int quiet);
- // Set to 1 if the test should be quiet
-
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.
-
-private:
- int quiet_;
- // be quiet
};
#endif /* REACTOR_I_H */