summaryrefslogtreecommitdiff
path: root/TAO/examples/AMI/FL_Callback/Peer_i.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-02-12 09:23:36 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-02-12 09:23:36 +0000
commitcd82c8b31f82f535c69a3c4f3c86dd9c9e1123dc (patch)
treec065201a8b02e5cc1efe8f37480fc34e375478f8 /TAO/examples/AMI/FL_Callback/Peer_i.h
parentb65364353b8af34317a0d48ba47cecd3c48d5c40 (diff)
downloadATCD-cd82c8b31f82f535c69a3c4f3c86dd9c9e1123dc.tar.gz
Mon Feb 12 09:20:14 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/examples/AMI/FL_Callback/Peer_i.h')
-rw-r--r--TAO/examples/AMI/FL_Callback/Peer_i.h27
1 files changed, 9 insertions, 18 deletions
diff --git a/TAO/examples/AMI/FL_Callback/Peer_i.h b/TAO/examples/AMI/FL_Callback/Peer_i.h
index 99e5436445e..f778761bb69 100644
--- a/TAO/examples/AMI/FL_Callback/Peer_i.h
+++ b/TAO/examples/AMI/FL_Callback/Peer_i.h
@@ -27,17 +27,13 @@ public:
Peer_Handler_i (Peer_i *peer);
// The peer
- virtual void request (CORBA::Long retval)
- ACE_THROW_SPEC ((CORBA::SystemException));
+ virtual void request (CORBA::Long retval);
- virtual void request_excep (::Messaging::ExceptionHolder * excep_holder)
- ACE_THROW_SPEC ((CORBA::SystemException));
+ virtual void request_excep (::Messaging::ExceptionHolder * excep_holder);
- virtual void start (void)
- ACE_THROW_SPEC ((CORBA::SystemException));
+ virtual void start (void);
- virtual void shutdown (void)
- ACE_THROW_SPEC ((CORBA::SystemException));
+ virtual void shutdown (void);
private:
Peer_i *peer_;
@@ -55,24 +51,19 @@ public:
void init (CORBA::ORB_ptr orb,
Progress_ptr progress,
- const ACE_Time_Value &delay)
- ACE_THROW_SPEC ((CORBA::SystemException));
+ const ACE_Time_Value &delay);
- void reply (CORBA::Long result)
- ACE_THROW_SPEC ((CORBA::SystemException));
+ void reply (CORBA::Long result);
// Used by the Reply_Handler to indicate that a reply has been
// received.
// = See test.idl for an explanation of these methods.
- CORBA::Long request (CORBA::Long id)
- ACE_THROW_SPEC ((CORBA::SystemException));
+ CORBA::Long request (CORBA::Long id);
void start (const PeerSet& the_peers,
- CORBA::Long iterations)
- ACE_THROW_SPEC ((CORBA::SystemException));
+ CORBA::Long iterations);
- void shutdown (void)
- ACE_THROW_SPEC ((CORBA::SystemException));
+ void shutdown (void);
private:
Peer_Handler_i reply_handler_;