mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 06:20:28 +00:00
af928c503d
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@34730 a592a061-630c-0410-9148-cb99ea01b6c8
41 lines
530 B
C++
41 lines
530 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file shared_ptr.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Peter Kümmel
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef LYX_SHARED_PTR_H
|
|
#define LYX_SHARED_PTR_H
|
|
|
|
#ifdef LYX_USE_TR1
|
|
|
|
#include <memory>
|
|
|
|
#ifdef __GNUC__
|
|
#include <tr1/memory>
|
|
#endif
|
|
|
|
namespace lyx
|
|
{
|
|
using std::tr1::shared_ptr;
|
|
}
|
|
|
|
#else
|
|
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
namespace lyx
|
|
{
|
|
using boost::shared_ptr;
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
#endif
|