/usr/include/tao/LocateRequest_Invocation.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 | // -*- C++ -*-
//=============================================================================
/**
* @file LocateRequest_Invocation.h
*
* $Id: LocateRequest_Invocation.h 79705 2007-09-24 07:45:37Z johnnyw $
*
*
* @author Balachandran Natarajan <bala@dre.vanderbilt.edu>
*/
//=============================================================================
#ifndef TAO_LOCATEREQUEST_INVOCATION_H
#define TAO_LOCATEREQUEST_INVOCATION_H
#include /**/ "ace/pre.h"
#include "ace/Global_Macros.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "tao/Synch_Invocation.h"
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
class TAO_Synch_Reply_Dispatcher;
namespace TAO
{
class Profile_Transport_Resolver;
/**
* @class LocateRequest_Invocation
*
* @brief Object created by TAO::LocateRequest_Invocation_Adapter to
* create and send LocateRequest invocation.
*/
class LocateRequest_Invocation
: public Synch_Twoway_Invocation
{
public:
/**
* @param otarget The target on which this invocation was
* started.
*
* @param resolver Container of the profile and transport on
* which this invocation is on
*
* @param detail Operation details of the invocation on @a
* target. This is of no practical importance since it is not used
* in this class. This is just to keep our base class happy.
*
*/
LocateRequest_Invocation (
CORBA::Object_ptr otarget,
Profile_Transport_Resolver &resolver,
TAO_Operation_Details &detail);
/// Start the invocation.
Invocation_Status invoke (ACE_Time_Value *max_wait_time);
private:
/// Helper to check the reply status
Invocation_Status check_reply (TAO_Synch_Reply_Dispatcher &rd);
};
}
TAO_END_VERSIONED_NAMESPACE_DECL
#include /**/ "ace/post.h"
#endif /*TAO_LOCATEREQUEST_INVOCATION_H*/
|