summaryrefslogtreecommitdiff
path: root/TAO/tao/ClientRequestInterceptor.pidl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/ClientRequestInterceptor.pidl')
-rw-r--r--TAO/tao/ClientRequestInterceptor.pidl50
1 files changed, 0 insertions, 50 deletions
diff --git a/TAO/tao/ClientRequestInterceptor.pidl b/TAO/tao/ClientRequestInterceptor.pidl
deleted file mode 100644
index f12487fb354..00000000000
--- a/TAO/tao/ClientRequestInterceptor.pidl
+++ /dev/null
@@ -1,50 +0,0 @@
-// -*- IDL -*-
-
-/**
- * @file ClientRequestInterceptor.pidl
- *
- * $Id$
- *
- * @brief Pre-compiled IDL source for the PortableInterceptor
- * components in the ORB.
- *
- * This file contains the interface definitions for "Portable"
- * Interceptor support.
- * The following is from orbos/99-12-02 Portable Interceptors spec,
- * the full IDL is downloadable from orbos/99-12-02.
- *
- * This file was used to generate the code in ClientRequestInterceptorC.*
- * The command used to generate code is:
- *
- * tao_idl
- * -o orig -Gp -Gd -Ge 1 -GA -Sc -SS -Sci
- * -Wb,export_include="tao/TAO_Export.h"
- * -Wb,export_macro=TAO_Export
- * -Wb,pre_include="ace/pre.h"
- * -Wb,post_include="ace/post.h"
- * ClientRequestInterceptor.pidl
- */
-
-#ifndef _CLIENT_REQUEST_INTERCEPTOR_IDL_
-#define _CLIENT_REQUEST_INTERCEPTOR_IDL_
-
-#include <Interceptor.pidl>
-#include <PIForwardRequest.pidl>
-
-module PortableInterceptor {
-
- typeprefix PortableInterceptor "omg.org";
-
- local interface ClientRequestInfo;
-
- local interface ClientRequestInterceptor : Interceptor
- {
- void send_request (in ClientRequestInfo ri) raises (ForwardRequest);
- void send_poll (in ClientRequestInfo ri);
- void receive_reply (in ClientRequestInfo ri);
- void receive_exception (in ClientRequestInfo ri) raises (ForwardRequest);
- void receive_other (in ClientRequestInfo ri) raises (ForwardRequest);
- };
-};
-
-#endif /* _CLIENT_REQUEST_INTERCEPTOR_IDL_ */