summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/ESF/ESF_Shutdown_Proxy.cpp
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-02-27 23:12:27 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-02-27 23:12:27 +0000
commit4075bff35deee2c0e332ab5db6fb73936fb375bb (patch)
treeb6f62eec9aa9db67137eb66ae020d41827a7e216 /TAO/orbsvcs/orbsvcs/ESF/ESF_Shutdown_Proxy.cpp
parent4a82d19278e3f1eefd32ab50ebb04d0e1fc42d91 (diff)
downloadATCD-4075bff35deee2c0e332ab5db6fb73936fb375bb.tar.gz
ChangeLogTag:Sat Feb 26 21:45:45 2000 Carlos O'Ryan <coryan@uci.edu>ESF
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/ESF/ESF_Shutdown_Proxy.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/ESF/ESF_Shutdown_Proxy.cpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/TAO/orbsvcs/orbsvcs/ESF/ESF_Shutdown_Proxy.cpp b/TAO/orbsvcs/orbsvcs/ESF/ESF_Shutdown_Proxy.cpp
new file mode 100644
index 00000000000..628710224a9
--- /dev/null
+++ b/TAO/orbsvcs/orbsvcs/ESF/ESF_Shutdown_Proxy.cpp
@@ -0,0 +1,30 @@
+// $Id$
+
+#ifndef TAO_ESF_SHUTDOWN_PROXY_CPP
+#define TAO_ESF_SHUTDOWN_PROXY_CPP
+
+#include "ESF_Shutdown_Proxy.h"
+
+#if ! defined (__ACE_INLINE__)
+#include "ESF_Shutdown_Proxy.i"
+#endif /* __ACE_INLINE__ */
+
+ACE_RCSID(ESF, ESF_Shutdown_Proxy, "$Id$")
+
+template<class PROXY> void
+TAO_ESF_Shutdown_Proxy<PROXY>::work (PROXY *proxy,
+ CORBA::Environment &ACE_TRY_ENV)
+{
+ ACE_TRY
+ {
+ proxy->shutdown (ACE_TRY_ENV);
+ ACE_TRY_CHECK;
+ }
+ ACE_CATCHANY
+ {
+ // Do not propagate any exceptions
+ }
+ ACE_ENDTRY;
+}
+
+#endif /* TAO_ESF_SHUTDOWN_PROXY_CPP */