]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/dll/example/tutorial8/refcounting_plugin.hpp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / dll / example / tutorial8 / refcounting_plugin.hpp
1 // Copyright 2014 Renato Tegon Forti, Antony Polukhin.
2 // Copyright 2015-2016 Antony Polukhin.
3 //
4 // Distributed under the Boost Software License, Version 1.0.
5 // (See accompanying file LICENSE_1_0.txt
6 // or copy at http://www.boost.org/LICENSE_1_0.txt)
7
8 //[plugcpp_my_plugin_refcounting_hpp
9 #include "refcounting_api.hpp"
10 #include <boost/dll/alias.hpp> // for BOOST_DLL_ALIAS
11
12 my_refcounting_api* create(); // defined in plugin
13 BOOST_DLL_ALIAS(create, create_refc_plugin)
14 //]
15
16
17