/usr/include/tao/LF_Event_Binder.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 | // -*- C++ -*-
//=============================================================================
/**
* @file LF_Event_Binder.h
*
* $Id: LF_Event_Binder.h 84840 2009-03-16 15:11:55Z johnnyw $
*
* @author Carlos O'Ryan <coryan@uci.edu>
*/
//=============================================================================
#ifndef TAO_LF_EVENT_BINDER_H
#define TAO_LF_EVENT_BINDER_H
#include /**/ "ace/pre.h"
#include "tao/LF_Event.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
class TAO_LF_Follower;
/**
* @brief Implement an auto_ptr-like class for the TAO_LF_Followers
* allocated via a TAO_Leader_Follower set.
*
* The Leader/Follower set is a factory for TAO_LF_Follower objects
*/
class TAO_Export TAO_LF_Event_Binder
{
public:
/// Constructor
TAO_LF_Event_Binder (TAO_LF_Event *event, TAO_LF_Follower *folloer);
/// Destructor
~TAO_LF_Event_Binder (void);
private:
void operator= (const TAO_LF_Event_Binder &);
TAO_LF_Event_Binder (const TAO_LF_Event_Binder &);
private:
/// Keep a reference to the leader follower
TAO_LF_Event * const event_;
TAO_LF_Follower * const follower_;
};
TAO_END_VERSIONED_NAMESPACE_DECL
#if defined (__ACE_INLINE__)
# include "tao/LF_Event_Binder.inl"
#endif /* __ACE_INLINE__ */
#include /**/ "ace/post.h"
#endif /* TAO_LF_EVENT_BINDER_H */
|