load_self.cpp 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. // Copyright 2014 Renato Tegon Forti, Antony Polukhin.
  2. // Copyright 2015-2019 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. // MinGW related workaround
  8. #define BOOST_DLL_FORCE_ALIAS_INSTANTIATION
  9. //[plugcpp_my_plugin_load_self
  10. #include <boost/dll/shared_library.hpp> // for shared_library
  11. #include <boost/dll/runtime_symbol_info.hpp> // for program_location()
  12. #include "static_plugin.hpp" // without this headers some compilers may optimize out the `create_plugin` symbol
  13. #include <boost/function.hpp>
  14. #include <iostream>
  15. namespace dll = boost::dll;
  16. int main() {
  17. dll::shared_library self(dll::program_location());
  18. std::cout << "Call function" << std::endl;
  19. boost::function<boost::shared_ptr<my_plugin_api>()> creator
  20. = self.get_alias<boost::shared_ptr<my_plugin_api>()>("create_plugin");
  21. std::cout << "Computed Value: " << creator()->calculate(2, 2) << std::endl;
  22. //<-
  23. {
  24. // This block is invisible for Quickbook documentation
  25. float res = creator()->calculate(10, 10);
  26. if (!(res > -0.0001 && res < 0.00001)) {
  27. throw std::runtime_error("Failed check: res > -0.0001 && res < 0.00001");
  28. }
  29. }
  30. //->
  31. }
  32. //]