]> git.lyx.org Git - features.git/blob - src/support/shared_ptr.h
Replace boost::scoped_ptr with unique_ptr
[features.git] / src / support / shared_ptr.h
1 // -*- C++ -*-
2 /**
3  * \file shared_ptr.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Peter Kümmel
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef LYX_SHARED_PTR_H
13 #define LYX_SHARED_PTR_H
14
15 #include <memory>
16
17 namespace lyx
18 {
19         using std::shared_ptr;
20         using std::make_shared;
21         using std::const_pointer_cast;
22 }
23
24
25 #endif