/usr/include/tao/Dynamic_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 103 104 105 106 107 108 | // -*- C++ -*-
//=============================================================================
/**
* @file Dynamic_Adapter.h
*
* $Id: Dynamic_Adapter.h 80376 2008-01-06 07:37:06Z johnnyw $
*
* @author Jeff Parsons <parsons@cs.wustl.edu>
*/
//=============================================================================
#ifndef TAO_DYNAMIC_ADAPTER_H
#define TAO_DYNAMIC_ADAPTER_H
#include /**/ "ace/pre.h"
#include "ace/Service_Object.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include /**/ "tao/TAO_Export.h"
#include "tao/Basic_Types.h"
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
namespace CORBA
{
class Object;
typedef Object *Object_ptr;
class ORB;
typedef ORB *ORB_ptr;
class NVList;
typedef NVList *NVList_ptr;
class NamedValue;
typedef NamedValue *NamedValue_ptr;
class ExceptionList;
typedef ExceptionList *ExceptionList_ptr;
class Request;
typedef Request *Request_ptr;
class Context;
typedef Context *Context_ptr;
class ServerRequest;
typedef ServerRequest *ServerRequest_ptr;
typedef ULong Flags;
}
/**
* @class TAO_Dynamic_Adapter
*
* @brief TAO_Dynamic_Adapter.
*
* Class that adapts various functions in the CORBA namespace
* related to DII/DSI, which is no longer found in the TAO library.
* This is a base for the actual implementation in the DynamicInterface
* library.
*/
class TAO_Export TAO_Dynamic_Adapter : public ACE_Service_Object
{
public:
virtual ~TAO_Dynamic_Adapter (void);
// CORBA::Object::_create_request and CORBA::Object::_request.
virtual void create_request (CORBA::Object_ptr obj,
CORBA::ORB_ptr orb,
const char *operation,
CORBA::NVList_ptr arg_list,
CORBA::NamedValue_ptr result,
CORBA::ExceptionList_ptr exceptions,
CORBA::Request_ptr &request,
CORBA::Flags req_flags) = 0;
virtual CORBA::Request_ptr request (CORBA::Object_ptr obj,
CORBA::ORB_ptr orb,
const char *op) = 0;
// CORBA::is_nil and CORBA::release for Context, Request, and ServerRequest.
virtual CORBA::Boolean context_is_nil (CORBA::Context_ptr ctx) = 0;
virtual CORBA::Boolean request_is_nil (CORBA::Request_ptr req) = 0;
virtual CORBA::Boolean server_request_is_nil (CORBA::ServerRequest_ptr req) = 0;
virtual void context_release (CORBA::Context_ptr ctx) = 0;
virtual void request_release (CORBA::Request_ptr req) = 0;
virtual void server_request_release (CORBA::ServerRequest_ptr req) = 0;
// CORBA::ORB::create_exception_list.
virtual void create_exception_list (CORBA::ExceptionList_ptr &) = 0;
};
TAO_END_VERSIONED_NAMESPACE_DECL
#include /**/ "ace/post.h"
#endif /* TAO_DYNAMIC_ADAPTER_H */
|