/usr/include/tao/Object_Proxy_Broker.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 | // -*- C++ -*-
//=============================================================================
/**
* @file Object_Proxy_Broker.h
*
* $Id: Object_Proxy_Broker.h 79610 2007-09-07 18:17:34Z johnnyw $
*
* This files contains the abstract class for the CORBA Object
* proxy brokers.
*
* @author Angelo Corsaro <corsaro@cs.wustl.edu>
* Modified by
* @author Balachandran Natarajan <bala@dre.vanderbilt.edu>
*/
//=============================================================================
#ifndef TAO_OBJECT_PROXY_BROKER_H
#define TAO_OBJECT_PROXY_BROKER_H
#include /**/ "ace/pre.h"
#include "tao/Basic_Types.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include /**/ "tao/TAO_Export.h"
#include "tao/orbconf.h"
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
namespace CORBA
{
class InterfaceDef;
class Object;
typedef Object *Object_ptr;
}
namespace TAO
{
/**
* @class Object_Proxy_Broker
*
* @brief Object_Proxy_Broker
*
*/
class TAO_Export Object_Proxy_Broker
{
public:
/// Destructor
virtual ~Object_Proxy_Broker (void);
virtual CORBA::Boolean _is_a (CORBA::Object_ptr target,
const char *logical_type_id) = 0;
#if (TAO_HAS_MINIMUM_CORBA == 0)
virtual CORBA::Boolean _non_existent (CORBA::Object_ptr target) = 0;
#if !defined (CORBA_E_COMPACT) && !defined (CORBA_E_MICRO)
virtual CORBA::InterfaceDef *_get_interface (CORBA::Object_ptr target) = 0;
virtual CORBA::Object_ptr _get_component (CORBA::Object_ptr target) = 0;
#endif
virtual char * _repository_id (CORBA::Object_ptr target) = 0;
#endif /* TAO_HAS_MINIMUM_CORBA == 0 */
};
}
TAO_END_VERSIONED_NAMESPACE_DECL
#include /**/ "ace/post.h"
#endif /* TAO_OBJECT_PROXY_BROKER_H_ */
|