Remove no-inline-max-size and suppress remark
[alexxy/gromacs.git] / src / gromacs / utility / uniqueptr.h
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2012,2013, by the GROMACS development team, led by
5  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
6  * and including many others, as listed in the AUTHORS file in the
7  * top-level source directory and at http://www.gromacs.org.
8  *
9  * GROMACS is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public License
11  * as published by the Free Software Foundation; either version 2.1
12  * of the License, or (at your option) any later version.
13  *
14  * GROMACS is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with GROMACS; if not, see
21  * http://www.gnu.org/licenses, or write to the Free Software Foundation,
22  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
23  *
24  * If you want to redistribute modifications to GROMACS, please
25  * consider that scientific software is very special. Version
26  * control is crucial - bugs must be traceable. We will be happy to
27  * consider code for inclusion in the official distribution, but
28  * derived work must not be called official GROMACS. Details are found
29  * in the README & COPYING files - if they are missing, get the
30  * official version at http://www.gromacs.org.
31  *
32  * To help us fund GROMACS development, we humbly ask that you cite
33  * the research papers on the package. Check out http://www.gromacs.org.
34  */
35 /*! \file
36  * \brief
37  * Declares gmx::gmx_unique_ptr and supporting functionality.
38  *
39  * \author Roland Schulz <roland@utk.edu>
40  * \author John Eblen <jeblen@acm.org>
41  * \inlibraryapi
42  * \ingroup module_utility
43  */
44 #ifndef GMX_UTILITY_UNIQUEPTR_H
45 #define GMX_UTILITY_UNIQUEPTR_H
46
47 #include "gmx_header_config.h"
48
49 #ifdef GMX_CXX11 // C++11 Compiler
50 #include <memory>
51 #include <utility>
52 #else      // C++03 Compiler
53 #include <boost/shared_ptr.hpp>
54 #endif
55
56 namespace gmx
57 {
58
59 /*! \class gmx_unique_ptr
60  * \brief
61  * Smart pointer for unique ownership.
62  *
63  * The \a type member typedef declares the actual smart pointer type.
64  * If std::unique_ptr from C++11 is available, it is used, otherwise maps to
65  * boost::shared_ptr. Because of this, there are some limitations to usage.
66  * gmx::move() should be used to move the pointer.
67  *
68  * Avoid using directly as a type, use a typedef instead. Typical usage:
69  * \code
70    typedef gmx_unique_ptr<ExampleClass>::type ExampleClassPointer;
71    \endcode
72  *
73  * \ingroup module_utility
74  * \inlibraryapi
75  */
76 /*! \typedef gmx_unique_ptr::type
77  * \brief The smart pointer type.
78  * Work-around for the non-existence of template typedefs in C++03.
79  */
80 #ifdef GMX_CXX11 // C++11 Compiler
81 using std::move;
82 template<typename T>
83 struct gmx_unique_ptr
84 {
85     typedef std::unique_ptr<T> type;
86 };
87 #else // C++03 Compiler
88 /*! \fn boost::shared_ptr<T> &move(boost::shared_ptr<T> &ptr)
89  * \brief
90  * Moves gmx::gmx_unique_ptr type pointers
91  *
92  * For C++11 gmx::move is the std::move, for non-C++11 compilers, the
93  * move operation is a no-op.
94  *
95  * \inlibraryapi
96  */
97 template<typename T>
98 boost::shared_ptr<T> &move(boost::shared_ptr<T> &ptr)
99 {
100     return ptr;
101 }
102 template<typename T>
103 struct gmx_unique_ptr
104 {
105     typedef boost::shared_ptr<T> type;
106 };
107 #endif
108
109 } // namespace gmx
110
111 #endif