/usr/share/idl/tao/TAO.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 43 44 45 | // -*- IDL -*-
// ================================================================
/**
* @file TAO.pidl
*
* $Id: TAO.pidl 79237 2007-08-07 09:48:21Z johnnyw $
*
* This file contains TAO-specific idl interfaces (not part of CORBA
* 2.6).
*
* The steps to regenerate the code are as follows:
*
* 1. Run the tao_idl compiler on the pidl file. The command used for
* this is:
*
* tao_idl
* -o orig -Gp -Gd -GA -SS -Sci
* -Wb,export_macro=TAO_Export
* -Wb,pre_include="ace/pre.h"
* -Wb,post_include="ace/post.h"
* TAO.pidl
*
* 2. The files are ready to use
*/
// ================================================================
#ifndef TAO_TAO_IDL
#define TAO_TAO_IDL
#include "tao/Policy.pidl"
#include "tao/TimeBase.pidl"
#include "tao/Messaging_SyncScope.pidl"
#pragma prefix "tao"
module TAO
{
// = TAO specific.
const Messaging::SyncScope SYNC_DELAYED_BUFFERING = -2;
};
#pragma prefix ""
#endif /* TAO_TAO_IDL */
|