summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableInterceptor.pidl
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:11 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:11 +0000
commit8008dd09ccf88d4edef237a184a698cac42f2952 (patch)
treeda50d054f9c761c3f6a5923f6979e93306c56d68 /TAO/tao/PortableInterceptor.pidl
parent13d6e89af439164c0ade48e6f5c3e9b3f971e8c9 (diff)
downloadATCD-8008dd09ccf88d4edef237a184a698cac42f2952.tar.gz
Repo restructuring
Diffstat (limited to 'TAO/tao/PortableInterceptor.pidl')
-rw-r--r--TAO/tao/PortableInterceptor.pidl59
1 files changed, 0 insertions, 59 deletions
diff --git a/TAO/tao/PortableInterceptor.pidl b/TAO/tao/PortableInterceptor.pidl
deleted file mode 100644
index cec2a5046f1..00000000000
--- a/TAO/tao/PortableInterceptor.pidl
+++ /dev/null
@@ -1,59 +0,0 @@
-// -*- IDL -*-
-
-/**
- * @file PortableInterceptor.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.
- *
- * Additional updates from ptc/00-08-05 are also included. Changes
- * include:
- * - addition of the Interceptor::destroy() method
- * - move of CodecFactory and Codec interfaces to the IOP module
- *
- * This file was used to generate the code in PortableInterceptorC.*
- * The command used to generate code is:
- *
- * tao_idl
- * -o orig -Gp -Gd -Ge 1 -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"
- * PortableInterceptor.pidl
- */
-
-// File: PortableInterceptor.idl
-#ifndef _PORTABLE_INTERCEPTOR_IDL_
-#define _PORTABLE_INTERCEPTOR_IDL_
-
-#include "tao/PI_Forward.pidl"
-#include "tao/Messaging_SyncScope.pidl"
-
-module PortableInterceptor {
-
- typeprefix PortableInterceptor "omg.org";
-
- const AdapterState HOLDING = 0;
- const AdapterState ACTIVE = 1;
- const AdapterState DISCARDING = 2;
- const AdapterState INACTIVE = 3;
- const AdapterState NON_EXISTENT = 4;
-
- // Valid reply_status values:
- const ReplyStatus SUCCESSFUL = 0;
- const ReplyStatus SYSTEM_EXCEPTION = 1;
- const ReplyStatus USER_EXCEPTION = 2;
- const ReplyStatus LOCATION_FORWARD = 3;
- const ReplyStatus TRANSPORT_RETRY = 4;
- const ReplyStatus UNKNOWN = 5;
-};
-
-#endif /* _PORTABLE_INTERCEPTOR_IDL_ */