blob: 534873d255f77923befb8c87ef12db2d42850e6e (
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
|
// This may look like C, but it's really
// -*- C++ -*-
//=============================================================================
/**
* @file Synch_Refcountable.h
*
* $Id$
*
* Definition for a synchronised refcountable interface.
*
* @author Fred Kuhns <fredk@cs.wustl.edu>
*/
//=============================================================================
#ifndef TAO_SYNCH_REFCOUNTABLE_H
#define TAO_SYNCH_REFCOUNTABLE_H
#include "ace/pre.h"
#include "ace/Refcountable.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "TAO_Export.h"
#include "ace/Synch.h"
class ACE_Lock;
/**
* @class TAO_Synch_Refcountable
*
* @brief Definition for a synchronised refcountable interface.
*/
class TAO_Export TAO_Synch_Refcountable : private ACE_Refcountable
{
public:
virtual ~TAO_Synch_Refcountable (void);
int increment (void);
int decrement (void);
int refcount (void) const;
protected:
TAO_Synch_Refcountable (ACE_Lock *lock, int refcount);
ACE_Lock *refcount_lock_;
};
#if defined (__ACE_INLINE__)
# include "Synch_Refcountable.inl"
#endif /* __ACE_INLINE__ */
#include "ace/post.h"
#endif /*TAO_SYNCH_REFCOUNTABLE*/
|