CppCMS
memory_inc.h
1 //
2 // Copyright (C) 2009-2020 Artyom Beilis (Tonkikh)
3 //
4 // Distributed under the Boost Software License, Version 1.0. (See
5 // accompanying file LICENSE_1_0.txt or copy at
6 // http://www.boost.org/LICENSE_1_0.txt)
7 //
8 #ifndef BOOSTER_MEMORY_INC_H
9 #define BOOSTER_MEMORY_INC_H
10 #include <memory>
11 namespace booster {
12  using std::enable_shared_from_this;
13  using std::weak_ptr;
14  using std::shared_ptr;
15  using std::bad_weak_ptr;
16  using std::static_pointer_cast;
17  using std::dynamic_pointer_cast;
18  using std::const_pointer_cast;
19 }
20 #endif
Booster library namespace. The library that implements Boost Like API in ABI backward compatible way...
Definition: application.h:23