Files
TrinityCore/dep/ACE_wrappers/ace/Refcountable.h
Neo2003 5651828bf7 [svn] * Added ACE for Linux and Windows (Thanks Derex for Linux part and partial Windows part)
* Updated to 6721 and 676
* Fixed TrinityScript logo
* Version updated to 0.2.6721.676

--HG--
branch : trunk
rename : 6700-670 => 6721-676
2008-10-04 06:17:19 -05:00

33 lines
755 B
C++

// -*- 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*/