dll.hpp 712 B

123456789101112131415161718192021222324252627
  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. #ifndef BOOST_DLL_DLL_HPP
  8. #define BOOST_DLL_DLL_HPP
  9. /// \file boost/dll.hpp
  10. /// \brief Includes all the non-experimental headers of the Boost.DLL library.
  11. #include <boost/dll/config.hpp>
  12. #include <boost/dll/shared_library.hpp>
  13. #include <boost/dll/alias.hpp>
  14. #include <boost/dll/import.hpp>
  15. #include <boost/dll/library_info.hpp>
  16. #include <boost/dll/runtime_symbol_info.hpp>
  17. #ifdef BOOST_HAS_PRAGMA_ONCE
  18. # pragma once
  19. #endif
  20. #endif // BOOST_DLL_DLL_HPP