Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / tao / CSD_ThreadPool / CSD_TP_Custom_Request_Operation.inl
blob45af5315cbee74b6ba23d9d786402a1c89b637f3
1 // -*- C++ -*-
2 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
4 ACE_INLINE
5 TAO::CSD::TP_Custom_Request_Operation::TP_Custom_Request_Operation
6                                           (PortableServer::Servant servant)
7 : servant_ (servant)
9   this->servant_->_add_ref ();
13 ACE_INLINE
14 void
15 TAO::CSD::TP_Custom_Request_Operation::execute ()
17   this->execute_i();
21 ACE_INLINE
22 void
23 TAO::CSD::TP_Custom_Request_Operation::cancel()
25   this->cancel_i();
29 ACE_INLINE
30 PortableServer::Servant
31 TAO::CSD::TP_Custom_Request_Operation::servant()
33   return this->servant_.in();
36 TAO_END_VERSIONED_NAMESPACE_DECL