/usr/share/idl/tao/PI/ProcessingModePolicy.pidl is in libtao-dev 6.0.1-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | /**
* @file ProcessingModePolicy.pidl
*
* $Id: ProcessingModePolicy.pidl 76257 2007-01-02 10:02:38Z johnnyw $
*
* @brief Pre-compiled IDL source for the ProcessingModePolicy within
* the PortableInterceptor module.
*
* tao_idl \
* -o orig -Gp -Gd -GT -GA \
* -Wb,export_include="tao/TAO_Export.h" \
* -Wb,export_macro=TAO_Export \
* -Wb,pre_include="ace/pre.h" \
* -Wb,post_include="ace/post.h" \
* ProcessingModePolicy.pidl
*/
#ifndef _PROCESSING_MODE_POLICY_PIDL_
#define _PROCESSING_MODE_POLICY_PIDL_
#include "tao/Policy.pidl"
module PortableInterceptor
{
// ProcessingMode Policy (default = LOCAL_AND_REMOTE)
typedef short ProcessingMode;
const ProcessingMode LOCAL_AND_REMOTE = 0;
const ProcessingMode REMOTE_ONLY = 1;
const ProcessingMode LOCAL_ONLY = 2;
/// @todo - Need to get the proper Policy Type code from OMG
const CORBA::PolicyType PROCESSING_MODE_POLICY_TYPE = 100;
local interface ProcessingModePolicy : CORBA::Policy
{
readonly attribute ProcessingMode processing_mode;
};
};
#endif /* _PROCESSING_MODE_POLICY_PIDL_ */
|