summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Event/EC_ProxyPushSupplier_Set.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Event/EC_ProxyPushSupplier_Set.h')
-rw-r--r--TAO/orbsvcs/orbsvcs/Event/EC_ProxyPushSupplier_Set.h34
1 files changed, 17 insertions, 17 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Event/EC_ProxyPushSupplier_Set.h b/TAO/orbsvcs/orbsvcs/Event/EC_ProxyPushSupplier_Set.h
index f1e7314dda5..050446e1bf1 100644
--- a/TAO/orbsvcs/orbsvcs/Event/EC_ProxyPushSupplier_Set.h
+++ b/TAO/orbsvcs/orbsvcs/Event/EC_ProxyPushSupplier_Set.h
@@ -45,7 +45,7 @@
class TAO_EC_ProxyPushSupplier;
template<class Target,class Object> class TAO_EC_Connected_Command;
template<class Target,class Object> class TAO_EC_Disconnected_Command;
-template<class Target> class TAO_EC_Shutdown_Command_T;
+template<class Target> class TAO_EC_Shutdown_Command;
class TAO_ORBSVCS_Export TAO_EC_ProxyPushSupplier_Set
{
@@ -213,39 +213,39 @@ public:
// The implementation of this methods is provided by derived
// classes, that provide appropiate locking.
- virtual void connected (TAO_EC_ProxyPushSupplier *,
- CORBA::Environment & = TAO_default_environment ()) = 0;
- virtual void disconnected (TAO_EC_ProxyPushSupplier *,
- CORBA::Environment & = TAO_default_environment ()) = 0;
+ virtual void connected (TAO_EC_ProxyPushSupplier*,
+ CORBA::Environment&) = 0;
+ virtual void disconnected (TAO_EC_ProxyPushSupplier*,
+ CORBA::Environment&) = 0;
// Used to inform the EC that a Supplier has connected or
// disconnected from it.
- virtual void shutdown (CORBA::Environment & = TAO_default_environment ()) = 0;
- // The EC is shutting down, release all our resources.
+ virtual void shutdown (CORBA::Environment&) = 0;
+ // The EC is shutting down, release all our resources
protected:
virtual void connected_i (TAO_EC_ProxyPushSupplier* supplier,
- CORBA::Environment &env = TAO_default_environment ());
- // The implementation of connected(), without locking. It does not
- // increase the reference count on the supplier
+ CORBA::Environment &env);
+ // The implementation of connected(), without locking.
+ // It does not increase the reference count on the supplier
virtual void disconnected_i (TAO_EC_ProxyPushSupplier* supplier,
- CORBA::Environment &env = TAO_default_environment ());
- // The implementation of disconnected(), without locking. It
- // decreases the reference count on the supplier if the operation is
- // successful.
+ CORBA::Environment &env);
+ // The implementation of disconnected(), without locking.
+ // It decreases the reference count on the supplier if the operation
+ // is successful.
- virtual void shutdown_i (CORBA::Environment &env = TAO_default_environment ());
+ virtual void shutdown_i (CORBA::Environment& env);
// Implement the shutdown method, assuming the right locks are
// acquired by the base class.
typedef TAO_EC_Connected_Command<TAO_EC_ProxyPushSupplier_Set,TAO_EC_ProxyPushSupplier> Connected_Command;
typedef TAO_EC_Connected_Command<TAO_EC_ProxyPushSupplier_Set,TAO_EC_ProxyPushSupplier> Disconnected_Command;
- typedef TAO_EC_Shutdown_Command_T<TAO_EC_ProxyPushSupplier_Set> Shutdown_Command;
+ typedef TAO_EC_Shutdown_Command<TAO_EC_ProxyPushSupplier_Set> Shutdown_Command;
friend class TAO_EC_Connected_Command<TAO_EC_ProxyPushSupplier_Set,TAO_EC_ProxyPushSupplier>;
friend class TAO_EC_Disconnected_Command<TAO_EC_ProxyPushSupplier_Set,TAO_EC_ProxyPushSupplier>;
- friend class TAO_EC_Shutdown_Command_T<TAO_EC_ProxyPushSupplier_Set>;
+ friend class TAO_EC_Shutdown_Command<TAO_EC_ProxyPushSupplier_Set>;
// This classes call the connected_i(), disconnected_i() and
// shutdown_i() methods, that's ok because they do while this class
// is holding its lock.