Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef _PROCESSING_MODE_POLICY_PIDL_
00019 #define _PROCESSING_MODE_POLICY_PIDL_
00020
00021 #include "tao/Policy.pidl"
00022
00023 module PortableInterceptor
00024 {
00025
00026
00027 typedef short ProcessingMode;
00028 const ProcessingMode LOCAL_AND_REMOTE = 0;
00029 const ProcessingMode REMOTE_ONLY = 1;
00030 const ProcessingMode LOCAL_ONLY = 2;
00031
00032
00033 const CORBA::PolicyType PROCESSING_MODE_POLICY_TYPE = 100;
00034
00035 local interface ProcessingModePolicy : CORBA::Policy
00036 {
00037 readonly attribute ProcessingMode processing_mode;
00038 };
00039
00040 };
00041
00042 #endif