]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/dll/example/tutorial8/tutorial8_static.cpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / dll / example / tutorial8 / tutorial8_static.cpp
1 // Copyright 2014 Renato Tegon Forti, Antony Polukhin.
2 // Copyright 2015 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 //[callplugcpp_tutorial8_static
9 #include <boost/dll/runtime_symbol_info.hpp> // program_location()
10 #include <iostream>
11 #include "refcounting_plugin.hpp"
12
13 int main() {
14 boost::shared_ptr<my_refcounting_api> plugin = get_plugin(
15 boost::dll::program_location(),
16 "create_refc_plugin"
17 );
18
19 std::cout << "Plugin name: " << plugin->name()
20 << ", \nlocation: " << plugin->location()
21 << std::endl;
22 }
23 //]