mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-14 03:46:15 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@54463 954022d7-b5bf-4e40-9824-e11837661b57
17 lines
210 B
C++
17 lines
210 B
C++
#ifndef _CP_WEAK_PTR_H_
|
|
#define _CP_WEAK_PTR_H_
|
|
|
|
#include <boost/weak_ptr.hpp>
|
|
|
|
namespace cpdoccore {
|
|
|
|
template <class T>
|
|
struct weak_ptr
|
|
{
|
|
typedef ::boost::weak_ptr<T> Type;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|