Go to file
2014-08-20 19:19:33 +04:00
doc const aliases fixed and docs improved 2014-08-15 15:13:36 +04:00
example const aliases fixed and docs improved 2014-08-15 15:13:36 +04:00
include/boost Make it possible to list symbols by section and make library_info tests more strict 2014-08-20 19:19:33 +04:00
test Make it possible to list symbols by section and make library_info tests more strict 2014-08-20 19:19:33 +04:00
README.md Docs updated 2014-08-14 10:45:20 +04:00

Boost.Plugin

Library for comfortable work with DLL and DSO.

Caution

This is not an official Boost C++ library. It wasn't reviewed and can't be downloaded from www.boost.org. This beta is available to boost community to know real interest and get comments for refinement. The intention is to submit library to formal review, if community think that it is interesting!

Docs

Documentation of Boost.Plugin

Hello World (importing a "C" function)

#include <boost/plugin.hpp>

...

boost::function<int(int)> c_func
    = boost::plugin::shared_function<int(int)>(
        path_to_shared_library, "c_func_name"
    );

About

This library was derived from the Boost.Application library.

License

Distributed under the Boost Software License, Version 1.0.