summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/CosEvent/ConsumerAdmin_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/CosEvent/ConsumerAdmin_i.h')
-rw-r--r--TAO/orbsvcs/orbsvcs/CosEvent/ConsumerAdmin_i.h64
1 files changed, 0 insertions, 64 deletions
diff --git a/TAO/orbsvcs/orbsvcs/CosEvent/ConsumerAdmin_i.h b/TAO/orbsvcs/orbsvcs/CosEvent/ConsumerAdmin_i.h
deleted file mode 100644
index e961b2db0cc..00000000000
--- a/TAO/orbsvcs/orbsvcs/CosEvent/ConsumerAdmin_i.h
+++ /dev/null
@@ -1,64 +0,0 @@
-/* -*- C++ -*- */
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO services
-//
-// = FILENAME
-// ConsumerAdmin_i
-//
-// = AUTHOR
-// Pradeep Gore <pradeep@cs.wustl.edu>
-//
-// = DESCRIPTION
-// This has the implementation of the
-// CosEventChannelAdmin::ConsumerAdmin interface.
-//
-// ============================================================================
-
-#if !defined (_CONSUMERADMIN_I_H)
-#define _CONSUMERADMIN_I_H
-
-#include "orbsvcs/RtecEventChannelAdminC.h"
-#include "orbsvcs/CosEventChannelAdminS.h"
-#include "orbsvcs/CosEvent/ProxyPushSupplier_i.h"
-
-class TAO_ORBSVCS_Export ConsumerAdmin_i : public POA_CosEventChannelAdmin::ConsumerAdmin
-{
- // = TITLE
- // class ConsumerAdmin_i implements the ConsumerAdmin interface.
- //
- // = DESCRIPTION
- // This implementation of the ConsumerAdmin uses the
- // RtecEventChannelAdmin::ConsumerAdmin.
-public:
- // = Initialization and termination methods.
- ConsumerAdmin_i (void);
- // Constructor.
-
- ~ConsumerAdmin_i (void);
- // Destructor.
-
- int init (const RtecEventChannelAdmin::ConsumerQOS &consumerqos,
- RtecEventChannelAdmin::ConsumerAdmin_ptr rtec_consumeradmin);
-
- virtual CosEventChannelAdmin::ProxyPushSupplier_ptr
- obtain_push_supplier(CORBA::Environment &TAO_TRY_ENV);
- // Returns a new ProxyPushSupplier_ptr.
-
- virtual CosEventChannelAdmin::ProxyPullSupplier_ptr
- obtain_pull_supplier(CORBA::Environment &TAO_TRY_ENV);
- // Returns a new ProxyPullSupplier_ptr.
-
-private:
- RtecEventChannelAdmin::ConsumerQOS qos_;
- // The ConsumerQOS specified by the user of this class.
-
- RtecEventChannelAdmin::ConsumerAdmin_ptr rtec_consumeradmin_;
- // The RtecEventChannelAdmin::ConsumerAdmin specified by the user of
- // this class.
-};
-
-#endif /* _CONSUMERADMIN_I_H */