Blame boost/dll.hpp

Packit 58578d
// Copyright 2014 Renato Tegon Forti, Antony Polukhin.
Packit 58578d
// Copyright 2015-2016 Antony Polukhin.
Packit 58578d
//
Packit 58578d
// Distributed under the Boost Software License, Version 1.0.
Packit 58578d
// (See accompanying file LICENSE_1_0.txt
Packit 58578d
// or copy at http://www.boost.org/LICENSE_1_0.txt)
Packit 58578d
Packit 58578d
Packit 58578d
#ifndef BOOST_DLL_DLL_HPP
Packit 58578d
#define BOOST_DLL_DLL_HPP
Packit 58578d
Packit 58578d
/// \file boost/dll.hpp
Packit 58578d
/// \brief Includes all the non-experimental headers of the Boost.DLL library.
Packit 58578d
Packit 58578d
#include <boost/config.hpp>
Packit 58578d
#include <boost/dll/shared_library.hpp>
Packit 58578d
#include <boost/dll/alias.hpp>
Packit 58578d
#include <boost/dll/import.hpp>
Packit 58578d
#include <boost/dll/library_info.hpp>
Packit 58578d
#include <boost/dll/runtime_symbol_info.hpp>
Packit 58578d
Packit 58578d
#ifdef BOOST_HAS_PRAGMA_ONCE
Packit 58578d
# pragma once
Packit 58578d
#endif
Packit 58578d
Packit 58578d
#endif // BOOST_DLL_DLL_HPP
Packit 58578d