summaryrefslogtreecommitdiff
path: root/TAO/tao/server_factory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/server_factory.cpp')
-rw-r--r--TAO/tao/server_factory.cpp14
1 files changed, 13 insertions, 1 deletions
diff --git a/TAO/tao/server_factory.cpp b/TAO/tao/server_factory.cpp
index d05ea48f402..cbc9617c63c 100644
--- a/TAO/tao/server_factory.cpp
+++ b/TAO/tao/server_factory.cpp
@@ -53,12 +53,24 @@ TAO_Server_Strategy_Factory::scheduling_strategy (void)
return 0;
}
-TAO_Object_Table *
+TAO_Object_Table_Impl *
TAO_Server_Strategy_Factory::create_object_table (void)
{
return 0;
}
+ACE_Lock *
+TAO_Server_Strategy_Factory::create_poa_lock (void)
+{
+ return 0;
+}
+
+ACE_Lock *
+TAO_Server_Strategy_Factory::create_poa_mgr_lock (void)
+{
+ return 0;
+}
+
#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)
template class ACE_Creation_Strategy<TAO_Server_Connection_Handler>;
template class ACE_Acceptor<TAO_Server_Connection_Handler, ACE_SOCK_ACCEPTOR>;