summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableServer/RequestProcessingStrategyServantLocator.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/PortableServer/RequestProcessingStrategyServantLocator.h')
-rw-r--r--TAO/tao/PortableServer/RequestProcessingStrategyServantLocator.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/TAO/tao/PortableServer/RequestProcessingStrategyServantLocator.h b/TAO/tao/PortableServer/RequestProcessingStrategyServantLocator.h
index 9cff43232f2..c6f8c3a4ff6 100644
--- a/TAO/tao/PortableServer/RequestProcessingStrategyServantLocator.h
+++ b/TAO/tao/PortableServer/RequestProcessingStrategyServantLocator.h
@@ -34,34 +34,34 @@ namespace TAO
: public RequestProcessingStrategyServantManager
{
public:
- RequestProcessingStrategyServantLocator ();
+ RequestProcessingStrategyServantLocator () = default;
- virtual void strategy_cleanup();
+ void strategy_cleanup() override;
- PortableServer::ServantManager_ptr get_servant_manager ();
+ PortableServer::ServantManager_ptr get_servant_manager () override;
- void set_servant_manager (PortableServer::ServantManager_ptr imgr);
+ void set_servant_manager (PortableServer::ServantManager_ptr imgr) override;
- virtual TAO_SERVANT_LOCATION locate_servant (
+ TAO_Servant_Location locate_servant (
const PortableServer::ObjectId &system_id,
- PortableServer::Servant &servant);
+ PortableServer::Servant &servant) override;
- virtual void post_invoke_servant_cleanup(
+ void post_invoke_servant_cleanup(
const PortableServer::ObjectId &system_id,
- const TAO::Portable_Server::Servant_Upcall &servant_upcall);
+ const TAO::Portable_Server::Servant_Upcall &servant_upcall) override;
- virtual PortableServer::Servant locate_servant (
+ PortableServer::Servant locate_servant (
const char *operation,
const PortableServer::ObjectId &system_id,
TAO::Portable_Server::Servant_Upcall &servant_upcall,
TAO::Portable_Server::POA_Current_Impl &poa_current_impl,
- bool &wait_occurred_restart_call);
+ bool &wait_occurred_restart_call) override;
- virtual void cleanup_servant (
+ void cleanup_servant (
PortableServer::Servant servant,
- const PortableServer::ObjectId &user_id);
+ const PortableServer::ObjectId &user_id) override;
- virtual void etherealize_objects (CORBA::Boolean etherealize_objects);
+ void etherealize_objects (CORBA::Boolean etherealize_objects) override;
private:
PortableServer::ServantLocator_var servant_locator_;