summaryrefslogtreecommitdiff
path: root/TAO/tao/Client_Strategy_Factory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Client_Strategy_Factory.cpp')
-rw-r--r--TAO/tao/Client_Strategy_Factory.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/TAO/tao/Client_Strategy_Factory.cpp b/TAO/tao/Client_Strategy_Factory.cpp
index 2740a486d7d..bde21bb2724 100644
--- a/TAO/tao/Client_Strategy_Factory.cpp
+++ b/TAO/tao/Client_Strategy_Factory.cpp
@@ -23,3 +23,19 @@ TAO_Client_Strategy_Factory::create_client_creation_strategy (void)
{
return 0;
}
+
+// Create the correct client request muxing strategy.
+TAO_Request_Mux_Strategy *
+TAO_Client_Strategy_Factory::create_request_mux_strategy (void)
+{
+ return 0;
+}
+
+
+// Create the correct client wait_for_reply strategy.
+
+TAO_Wait_Strategy *
+TAO_Client_Strategy_Factory::create_wait_strategy (TAO_Transport *transport)
+{
+ return 0;
+}