summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Channel_Clients_T.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Channel_Clients_T.h')
-rw-r--r--TAO/orbsvcs/orbsvcs/Channel_Clients_T.h48
1 files changed, 21 insertions, 27 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Channel_Clients_T.h b/TAO/orbsvcs/orbsvcs/Channel_Clients_T.h
index 5f5a0b217ae..8c964a92548 100644
--- a/TAO/orbsvcs/orbsvcs/Channel_Clients_T.h
+++ b/TAO/orbsvcs/orbsvcs/Channel_Clients_T.h
@@ -1,26 +1,23 @@
// -*- C++ -*-
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// ace
-//
-// = FILENAME
-// Channel_Clients_T
-//
-// = AUTHOR
-// Tim Harrison (harrison@cs.wustl.edu) and
-// Douglas Schmidt (schmidt@cs.wustl.edu)
-//
-// = DESCRIPTION
-// These classes allow applications to be consumer, suppliers, and
-// consumer suppliers, as well as being active objects. This is
-// accomplished with adapters to prevent the use of multiple
-// inheritence (which is this root of all evil.)
-//
-// ============================================================================
+
+//=============================================================================
+/**
+ * @file Channel_Clients_T.h
+ *
+ * $Id$
+ *
+ * @author Tim Harrison (harrison@cs.wustl.edu) and Douglas Schmidt (schmidt@cs.wustl.edu)
+ *
+ * These classes allow applications to be consumer, suppliers, and
+ * consumer suppliers, as well as being active objects. This is
+ * accomplished with adapters to prevent the use of multiple
+ * inheritence (which is this root of all evil.)
+ *
+ *
+ */
+//=============================================================================
+
#ifndef ACE_CHANNEL_CLIENTS_T_H
#define ACE_CHANNEL_CLIENTS_T_H
@@ -45,12 +42,10 @@ public:
ACE_PushConsumer_Adapter (TARGET *target);
/// Forwards to target_.
- virtual void push (const RtecEventComm::EventSet& events)
- ACE_THROW_SPEC (( CORBA::SystemException));
+ virtual void push (const RtecEventComm::EventSet& events);
/// Forwards to target_.
- virtual void disconnect_push_consumer (void)
- ACE_THROW_SPEC (( CORBA::SystemException));
+ virtual void disconnect_push_consumer (void);
private:
TARGET *target_;
@@ -73,8 +68,7 @@ public:
ACE_PushSupplier_Adapter (TARGET *target);
/// Forwards to target_.
- virtual void disconnect_push_supplier (void)
- ACE_THROW_SPEC (( CORBA::SystemException));
+ virtual void disconnect_push_supplier (void);
private:
TARGET *target_;