blob: eba916cd661d406764a44887d151ff042fa05a35 (
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
|
// -*- C++ -*-
//=============================================================================
/**
* @file Refcountable.h
*
* $Id: Refcountable.h 81402 2008-04-23 18:30:54Z johnnyw $
*
* @author Doug Schmidt
*/
//=============================================================================
#ifndef ACE_REFCOUNTABLE_H
#define ACE_REFCOUNTABLE_H
#include /**/ "ace/pre.h"
#include /**/ "ace/ACE_export.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "ace/Refcountable_T.h"
#include "ace/Null_Mutex.h"
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
typedef ACE_Refcountable_T<ACE_Null_Mutex> ACE_Refcountable;
ACE_END_VERSIONED_NAMESPACE_DECL
#include /**/ "ace/post.h"
#endif /*ACE_REFCOUNTABLE_H*/
|