summaryrefslogtreecommitdiff
path: root/TAO/tao/Interceptor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Interceptor.cpp')
-rw-r--r--TAO/tao/Interceptor.cpp100
1 files changed, 0 insertions, 100 deletions
diff --git a/TAO/tao/Interceptor.cpp b/TAO/tao/Interceptor.cpp
deleted file mode 100644
index aa22b9582ec..00000000000
--- a/TAO/tao/Interceptor.cpp
+++ /dev/null
@@ -1,100 +0,0 @@
-// $Id$
-
-#include "tao/corbafwd.h"
-#include "tao/Interceptor.h"
-
-#if !defined (__ACE_INLINE__)
-#include "tao/Interceptor.i"
-#endif /* defined INLINE */
-
-// Followings are the defualt no-op implementation of client-side and
-// server-side interceptors. The sole purpose to to let user
-// overwrite only the interception operations they are interested in
-// without providing others.
-
-// ** Users should always provide a name by dupping a string.
-// char * POA_PortableInterceptor::
-// Interceptor::name (CORBA::Environment &)
-// {
-// return CORBA::string_dup ("TAO default");
-// }
-
-#if defined (TAO_HAS_INTERCEPTORS)
-void POA_PortableInterceptor::
-ServerRequestInterceptor::preinvoke (CORBA::ULong,
- CORBA::Boolean,
- CORBA::Object_ptr,
- const char *,
- IOP::ServiceContextList &,
- CORBA::NVList_ptr &,
- PortableInterceptor::Cookies &,
- CORBA::Environment &)
-{
- // No-op.
-}
-
-void POA_PortableInterceptor::
-ServerRequestInterceptor::postinvoke (CORBA::ULong,
- CORBA::Boolean,
- CORBA::Object_ptr,
- const char *,
- IOP::ServiceContextList&,
- CORBA::NVList_ptr &,
- PortableInterceptor::Cookies&,
- CORBA::Environment &)
-{
- // No-op.
-}
-
-void POA_PortableInterceptor::
-ServerRequestInterceptor::exception_occurred (CORBA::ULong,
- CORBA::Boolean,
- CORBA::Object_ptr,
- const char *,
- //IOP::ServiceContextList &,
- //CORBA::Exception_ptr &,
- PortableInterceptor::Cookies &,
- CORBA::Environment &)
-{
- // No-op.
-}
-
-void POA_PortableInterceptor::
-ClientRequestInterceptor::preinvoke (CORBA::ULong,
- CORBA::Boolean,
- CORBA::Object_ptr,
- const char *,
- IOP::ServiceContextList &,
- CORBA::NVList_ptr &,
- PortableInterceptor::Cookies &,
- CORBA::Environment &)
-{
- // No-op.
-}
-
-void POA_PortableInterceptor::
-ClientRequestInterceptor::postinvoke (CORBA::ULong,
- CORBA::Boolean,
- CORBA::Object_ptr,
- const char *,
- IOP::ServiceContextList&,
- CORBA::NVList_ptr &,
- PortableInterceptor::Cookies&,
- CORBA::Environment &)
-{
- // No-op.
-}
-
-void POA_PortableInterceptor::
-ClientRequestInterceptor::exception_occurred (CORBA::ULong,
- CORBA::Boolean,
- CORBA::Object_ptr,
- const char *,
- //IOP::ServiceContextList &,
- //CORBA::Exception_ptr &,
- PortableInterceptor::Cookies &,
- CORBA::Environment &)
-{
- // No-op.
-}
-#endif /* TAO_HAS_INTERCEPTORS */