]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/boost/dll.hpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / boost / dll.hpp
CommitLineData
7c673cae 1// Copyright 2014 Renato Tegon Forti, Antony Polukhin.
1e59de90 2// Copyright Antony Polukhin, 2015-2022.
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
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
92f5a8d4 15#include <boost/dll/config.hpp>
7c673cae
FG
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