FOSSology  4.4.0
Open Source License Compliance by Open Source Software
uniquePtr.hpp
Go to the documentation of this file.
1 /*
2  SPDX-FileCopyrightText: © 2014 Siemens AG
3  Author: Daniele Fognini, Cedric Bodet, Johannes Najjar
4 
5  SPDX-License-Identifier: GPL-2.0-only
6 */
7 
8 #ifndef UNIQUE_PTR_HPP_
9 #define UNIQUE_PTR_HPP_
10 
19 //#define USEBOOST_UNIQUEPTR
20 #ifdef USEBOOST_UNIQUEPTR
21  #include <boost/interprocess/smart_ptr/unique_ptr.hpp>
22  namespace unptr = boost::interprocess;
23 #else
24 
25 #include <memory>
26 
27 namespace unptr = std;
28 #endif
29 
30 #endif /* UNIQUE_PTR_HPP_ */