diff options
Diffstat (limited to 'TAO/orbsvcs/Event_Service/Event_Service.cpp')
-rw-r--r-- | TAO/orbsvcs/Event_Service/Event_Service.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/TAO/orbsvcs/Event_Service/Event_Service.cpp b/TAO/orbsvcs/Event_Service/Event_Service.cpp index 29726be0784..78814972504 100644 --- a/TAO/orbsvcs/Event_Service/Event_Service.cpp +++ b/TAO/orbsvcs/Event_Service/Event_Service.cpp @@ -42,7 +42,7 @@ int ACE_TMAIN (int argc, ACE_TCHAR* argv[]) // **************************************************************** -Event_Service::Event_Service (void) +Event_Service::Event_Service () : sched_impl_ (0), ec_impl_ (0), scheduler_type_ (ES_SCHED_NONE), @@ -51,7 +51,7 @@ Event_Service::Event_Service (void) { } -Event_Service::~Event_Service (void) +Event_Service::~Event_Service () { delete this->ec_impl_; this->ec_impl_ = 0; @@ -402,19 +402,19 @@ Event_Service::parse_args (int argc, ACE_TCHAR* argv []) RtecEventChannelAdmin::ConsumerAdmin_ptr -Event_Service::for_consumers (void) +Event_Service::for_consumers () { return this->ec_impl_->for_consumers (); } RtecEventChannelAdmin::SupplierAdmin_ptr -Event_Service::for_suppliers (void) +Event_Service::for_suppliers () { return this->ec_impl_->for_suppliers (); } void -Event_Service::destroy (void) +Event_Service::destroy () { this->ec_impl_->destroy (); this->orb_->shutdown (); |