blob: f6dcac517efe6899654f9b0d4b009e1b65a56644 (
plain)
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
|
// -*- C++ -*-
//=============================================================================
/**
* @file LF_Event_Binder.h
*
* $Id$
*
* @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:
/// Keep a reference to the leader follower
TAO_LF_Event * const event_;
};
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 */
|