]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/dll/example/tutorial8/tutorial8_static.cpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / libs / dll / example / tutorial8 / tutorial8_static.cpp
CommitLineData
7c673cae 1// Copyright 2014 Renato Tegon Forti, Antony Polukhin.
92f5a8d4 2// Copyright 2015-2019 Antony Polukhin.
7c673cae
FG
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
7c673cae
FG
8//[callplugcpp_tutorial8_static
9#include <boost/dll/runtime_symbol_info.hpp> // program_location()
10#include <iostream>
11#include "refcounting_plugin.hpp"
12
13int 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//]