/usr/include/tao/IORInterceptor_Adapter.h 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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 | // -*- C++ -*-
//=============================================================================
/**
* @file IORInterceptor_Adapter.h
*
* $Id: IORInterceptor_Adapter.h 76995 2007-02-11 12:51:42Z johnnyw $
*
* @author Jeff Parsons <parsons@cs.wustl.edu>
*/
//=============================================================================
#ifndef TAO_IORINTERCEPTOR_ADAPTER_H
#define TAO_IORINTERCEPTOR_ADAPTER_H
#include /**/ "ace/pre.h"
#include /**/ "tao/TAO_Export.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "tao/PI_ForwardC.h"
#include "tao/Policy_ForwardC.h"
#include "tao/TAO_Export.h"
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
template <class T> class ACE_Array_Base;
ACE_END_VERSIONED_NAMESPACE_DECL
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
namespace PortableInterceptor
{
class IORInterceptor;
typedef IORInterceptor *IORInterceptor_ptr;
class IORInfo;
typedef IORInfo *IORInfo_ptr;
class ObjectReferenceTemplate;
}
namespace TAO
{
typedef ACE_Array_Base< ::PortableInterceptor::ObjectReferenceTemplate*>
ObjectReferenceTemplate_Array;
}
class TAO_Root_POA;
/**
* @class TAO_IORInterceptor_Adapter
*
* @brief TAO_IORInterceptor_Adapter.
*
* Class that adapts various functions involving the PortableInterceptor
* interfaces IORInfo and IORInterceptor. This is a base class for
* the actual implementation in the TAO_IORInterceptor library.
*/
class TAO_Export TAO_IORInterceptor_Adapter
{
public:
virtual ~TAO_IORInterceptor_Adapter (void);
virtual void add_interceptor (
PortableInterceptor::IORInterceptor_ptr interceptor) = 0;
virtual void add_interceptor (
PortableInterceptor::IORInterceptor_ptr interceptor,
const CORBA::PolicyList& policies) = 0;
virtual void destroy_interceptors (void) = 0;
/// Call the IORInterceptor::establish_components() method on all
/// registered IORInterceptors.
/**
* This method calls IORInterceptor::establish_components() method
* on all registered IORInterceptors, and
* IORInterceptor::components_established() once the former is
* completed.
*/
virtual void establish_components (TAO_Root_POA *poa) = 0;
/// Call the IORInterceptor::components_established() method on all
/// registered IORInterceptors.
virtual void components_established (PortableInterceptor::IORInfo_ptr info)
= 0;
virtual void adapter_state_changed (
const TAO::ObjectReferenceTemplate_Array &array_obj_ref_template,
PortableInterceptor::AdapterState state) = 0;
virtual void adapter_manager_state_changed (
const char * id,
PortableInterceptor::AdapterState state) = 0;
};
TAO_END_VERSIONED_NAMESPACE_DECL
#include /**/ "ace/post.h"
#endif /* TAO_IORINTERCEPTOR_ADAPTER_H */
|