summaryrefslogtreecommitdiff
path: root/TAO/tests/Smart_Proxies/Smart_Proxy_Impl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Smart_Proxies/Smart_Proxy_Impl.cpp')
-rw-r--r--TAO/tests/Smart_Proxies/Smart_Proxy_Impl.cpp24
1 files changed, 0 insertions, 24 deletions
diff --git a/TAO/tests/Smart_Proxies/Smart_Proxy_Impl.cpp b/TAO/tests/Smart_Proxies/Smart_Proxy_Impl.cpp
index b2bd94142ee..b49a86973b1 100644
--- a/TAO/tests/Smart_Proxies/Smart_Proxy_Impl.cpp
+++ b/TAO/tests/Smart_Proxies/Smart_Proxy_Impl.cpp
@@ -2,8 +2,6 @@
#include "Smart_Proxy_Impl.h"
-ACE_CString Smart_Test_Proxy::fake_ior_ ("This_is_my_fake_ior");
-
Smart_Test_Factory::Smart_Test_Factory (void)
{
ACE_DEBUG ((LM_DEBUG,
@@ -29,22 +27,6 @@ Smart_Test_Proxy::Smart_Test_Proxy (Test_ptr proxy)
{
}
-bool
-Smart_Test_Proxy::can_convert_to_ior (void) const
-{
- // Even though a smart proxy is local, this one can be stringified
- return true;
-}
-
-char*
-Smart_Test_Proxy::convert_to_ior (bool,
- const char*) const
-{
- // If this implementation wasn't provided, the ORB would provide
- // a stringified representation of this object.
- return CORBA::string_dup (fake_ior_.c_str ());
-}
-
CORBA::Short
Smart_Test_Proxy::method (CORBA::Short boo
ACE_ENV_ARG_DECL)
@@ -71,9 +53,3 @@ Smart_Test_Proxy::method (CORBA::Short boo
return retval;
}
-
-const ACE_CString&
-Smart_Test_Proxy::fake_ior (void)
-{
- return fake_ior_;
-}