summaryrefslogtreecommitdiff
path: root/TAO/tests/Smart_Proxies/Benchmark/Smart_Proxy_Impl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Smart_Proxies/Benchmark/Smart_Proxy_Impl.cpp')
-rw-r--r--TAO/tests/Smart_Proxies/Benchmark/Smart_Proxy_Impl.cpp41
1 files changed, 41 insertions, 0 deletions
diff --git a/TAO/tests/Smart_Proxies/Benchmark/Smart_Proxy_Impl.cpp b/TAO/tests/Smart_Proxies/Benchmark/Smart_Proxy_Impl.cpp
new file mode 100644
index 00000000000..53e752aee7a
--- /dev/null
+++ b/TAO/tests/Smart_Proxies/Benchmark/Smart_Proxy_Impl.cpp
@@ -0,0 +1,41 @@
+// $Id$
+
+#include "Smart_Proxy_Impl.h"
+
+Smart_Test_Factory::Smart_Test_Factory (void)
+{
+ ACE_DEBUG ((LM_DEBUG,
+ "Smart_Test_Factory\n"));
+}
+
+Test_ptr
+Smart_Test_Factory::create_proxy (Test_ptr proxy,
+ CORBA::Environment &)
+ {
+ ACE_DEBUG ((LM_DEBUG,
+ "create_smart_proxy\n"));
+
+ if (CORBA::is_nil (proxy) == 0)
+ ACE_NEW_RETURN (proxy, Smart_Test_Proxy (proxy), 0);
+
+ return proxy;
+
+ }
+
+Smart_Test_Proxy::Smart_Test_Proxy (Test_ptr proxy)
+ : TAO_Smart_Proxy_Base (proxy),
+ price_ (0)
+{
+}
+
+CORBA::Short
+Smart_Test_Proxy::box_prices (CORBA::Environment &ACE_TRY_ENV)
+ ACE_THROW_SPEC ((CORBA::SystemException))
+{
+ if (this->price_ == 0)
+ {
+ this->price_ = TAO_Test_Smart_Proxy_Base::box_prices (ACE_TRY_ENV);
+ ACE_CHECK_RETURN (0);
+ }
+ return this->price_;
+}