summaryrefslogtreecommitdiff
path: root/orbsvcs/examples/CosEC/RtEC_Based/lib/ProxyPushSupplier_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'orbsvcs/examples/CosEC/RtEC_Based/lib/ProxyPushSupplier_i.h')
-rw-r--r--orbsvcs/examples/CosEC/RtEC_Based/lib/ProxyPushSupplier_i.h48
1 files changed, 22 insertions, 26 deletions
diff --git a/orbsvcs/examples/CosEC/RtEC_Based/lib/ProxyPushSupplier_i.h b/orbsvcs/examples/CosEC/RtEC_Based/lib/ProxyPushSupplier_i.h
index 875feca65d5..8512710a4cb 100644
--- a/orbsvcs/examples/CosEC/RtEC_Based/lib/ProxyPushSupplier_i.h
+++ b/orbsvcs/examples/CosEC/RtEC_Based/lib/ProxyPushSupplier_i.h
@@ -1,22 +1,18 @@
/* -*- C++ -*- */
-// $Id$
-// ================================================================
-//
-// = LIBRARY
-// TAO services
-//
-// = FILENAME
-// ProxyPushSupplier_i
-//
-// = AUTHOR
-// Pradeep Gore <pradeep@cs.wustl.edu>
-//
-// = DESCRIPTION
-// This has the implementation of the
-// CosEventChannelAdmin::ProxyPushSupplier interface.
-//
-// ================================================================
+//=============================================================================
+/**
+ * @file ProxyPushSupplier_i.h
+ *
+ * $Id$
+ *
+ * @author Pradeep Gore <pradeep@cs.wustl.edu>
+ *
+ * This has the implementation of the
+ * CosEventChannelAdmin::ProxyPushSupplier interface.
+ */
+//=============================================================================
+
#ifndef _PROXYPUSHSUPPLIER_H
#define _PROXYPUSHSUPPLIER_H
@@ -39,32 +35,32 @@ class TAO_RTEC_COSEC_Export TAO_CosEC_ProxyPushSupplier_i :
// RtecEventChannelAdmin::ProxyPushSupplier.
public:
// = Initialization and termination methods.
+ /// Constructor.
TAO_CosEC_ProxyPushSupplier_i (const RtecEventChannelAdmin::ConsumerQOS &qos,
RtecEventChannelAdmin::ProxyPushSupplier_ptr pps);
- // Constructor.
+ /// Destructor.
~TAO_CosEC_ProxyPushSupplier_i (void);
- // Destructor.
+ /// Ends the event communication and disposes this object.
virtual void disconnect_push_supplier (void);
- // Ends the event communication and disposes this object.
+ /// Connects the <push_consumer> to the Event Channel.
virtual void connect_push_consumer(CosEventComm::PushConsumer_ptr push_consumer);
- // Connects the <push_consumer> to the Event Channel.
private:
+ /// Returns 0 if a push_consumer is already connected to this
+ /// ProxyPushSupplier, otherwise it returns a 1.
int connected (void);
- // Returns 0 if a push_consumer is already connected to this
- // ProxyPushSupplier, otherwise it returns a 1.
+ /// The ConsumerQOS specified by the user of this class.
const RtecEventChannelAdmin::ConsumerQOS &qos_;
- // The ConsumerQOS specified by the user of this class.
+ /// The Rtec ProxyPushSupplier specified by the user of this class.
RtecEventChannelAdmin::ProxyPushSupplier_var pps_;
- // The Rtec ProxyPushSupplier specified by the user of this class.
+ /// The Rtec PushConsumer wrapper used by the Rtec ProxyPushSupplier.
TAO_CosEC_PushConsumerWrapper *wrapper_;
- // The Rtec PushConsumer wrapper used by the Rtec ProxyPushSupplier.
};
#include /**/ "ace/post.h"