summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Event/EC_Event_Channel_Base.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Event/EC_Event_Channel_Base.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/Event/EC_Event_Channel_Base.cpp42
1 files changed, 21 insertions, 21 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Event/EC_Event_Channel_Base.cpp b/TAO/orbsvcs/orbsvcs/Event/EC_Event_Channel_Base.cpp
index c392ccf3ac7..553ebe51701 100644
--- a/TAO/orbsvcs/orbsvcs/Event/EC_Event_Channel_Base.cpp
+++ b/TAO/orbsvcs/orbsvcs/Event/EC_Event_Channel_Base.cpp
@@ -22,19 +22,19 @@ TAO_EC_Event_Channel_Base (const TAO_EC_Event_Channel_Attributes& attr,
consumer_poa_ (PortableServer::POA::_duplicate (attr.consumer_poa)),
factory_ (factory),
own_factory_ (own_factory),
- dispatching_ (0),
- filter_builder_ (0),
- supplier_filter_builder_ (0),
- consumer_admin_ (0),
- supplier_admin_ (0),
- timeout_generator_ (0),
- observer_strategy_ (0),
- scheduling_strategy_(0),
+ dispatching_ (nullptr),
+ filter_builder_ (nullptr),
+ supplier_filter_builder_ (nullptr),
+ consumer_admin_ (nullptr),
+ supplier_admin_ (nullptr),
+ timeout_generator_ (nullptr),
+ observer_strategy_ (nullptr),
+ scheduling_strategy_(nullptr),
consumer_reconnect_ (attr.consumer_reconnect),
supplier_reconnect_ (attr.supplier_reconnect),
disconnect_callbacks_ (attr.disconnect_callbacks),
- consumer_control_ (0),
- supplier_control_ (0),
+ consumer_control_ (nullptr),
+ supplier_control_ (nullptr),
status_ (EC_S_IDLE)
{
this->scheduler_ =
@@ -47,34 +47,34 @@ TAO_EC_Event_Channel_Base::~TAO_EC_Event_Channel_Base ()
// reference to each other during destruction and thus need to be
// cleaned up properly.
this->factory_->destroy_supplier_control (this->supplier_control_);
- this->supplier_control_ = 0;
+ this->supplier_control_ = nullptr;
this->factory_->destroy_consumer_control (this->consumer_control_);
- this->consumer_control_ = 0;
+ this->consumer_control_ = nullptr;
this->factory_->destroy_scheduling_strategy (this->scheduling_strategy_);
- this->scheduling_strategy_ = 0;
+ this->scheduling_strategy_ = nullptr;
this->factory_->destroy_observer_strategy (this->observer_strategy_);
- this->observer_strategy_ = 0;
+ this->observer_strategy_ = nullptr;
this->factory_->destroy_timeout_generator (this->timeout_generator_);
- this->timeout_generator_ = 0;
+ this->timeout_generator_ = nullptr;
this->factory_->destroy_supplier_admin (this->supplier_admin_);
- this->supplier_admin_ = 0;
+ this->supplier_admin_ = nullptr;
this->factory_->destroy_consumer_admin (this->consumer_admin_);
- this->consumer_admin_ = 0;
+ this->consumer_admin_ = nullptr;
this->factory_->destroy_supplier_filter_builder (this->supplier_filter_builder_);
- this->supplier_filter_builder_ = 0;
+ this->supplier_filter_builder_ = nullptr;
this->factory_->destroy_filter_builder (this->filter_builder_);
- this->filter_builder_ = 0;
+ this->filter_builder_ = nullptr;
this->factory_->destroy_dispatching (this->dispatching_);
- this->dispatching_ = 0;
+ this->dispatching_ = nullptr;
- this->factory (0, this->own_factory_);
+ this->factory (nullptr, this->own_factory_);
}
void