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