/usr/include/tao/Bind_Dispatcher_Guard.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 | // -*- C++ -*-
//=============================================================================
/**
* @file Bind_Dispatcher_Guard.h
*
* $Id: Bind_Dispatcher_Guard.h 82593 2008-08-11 15:39:24Z johnnyw $
*
* @author Carlos O'Ryan <coryan@uci.edu>
* @author Chad Elliott <elliott_c@ociweb.com>
*/
//=============================================================================
#ifndef TAO_BIND_DISPATCHER_GUARD_H
#define TAO_BIND_DISPATCHER_GUARD_H
#include /**/ "ace/pre.h"
#include "tao/Basic_Types.h"
#include /**/ "tao/TAO_Export.h"
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
class TAO_Reply_Dispatcher;
class TAO_Transport_Mux_Strategy;
class TAO_Export TAO_Bind_Dispatcher_Guard
{
public:
TAO_Bind_Dispatcher_Guard (CORBA::ULong request_id,
TAO_Reply_Dispatcher* rd,
TAO_Transport_Mux_Strategy* tms);
~TAO_Bind_Dispatcher_Guard (void);
/// Returns 0 if succesful and non-zero otherwise.
int unbind_dispatcher (void);
/// State information
enum TAO_Bind_Dispatcher_Status
{
/// Unbind the dispatcher
UNBIND = 0,
/// Do not unbind dispatcher
NO_UNBIND
};
/// Get status
TAO_Bind_Dispatcher_Status status (void) const;
/// Set status
void status (TAO_Bind_Dispatcher_Status status);
private:
TAO_Bind_Dispatcher_Status status_;
CORBA::ULong request_id_;
TAO_Transport_Mux_Strategy* tms_;
};
TAO_END_VERSIONED_NAMESPACE_DECL
#if defined (__ACE_INLINE__)
# include "tao/Bind_Dispatcher_Guard.inl"
#endif /* __ACE_INLINE__ */
#include /**/ "ace/post.h"
#endif
|