33 lines
940 B
C++
33 lines
940 B
C++
// alias.hpp --------------------------------------------------------//
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// Copyright 2014 Renato Tegon Forti, Antony Polukhin.
|
|
|
|
// Distributed under the Boost Software License, Version 1.0.
|
|
// See http://www.boost.org/LICENSE_1_0.txt
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// Revision History
|
|
// 06-08-2014 dd-mm-yyyy - Initial Release
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
#ifndef BOOST_PLUGIN_PLUGIN_HPP
|
|
#define BOOST_PLUGIN_PLUGIN_HPP
|
|
|
|
/// \file boost/plugin.hpp
|
|
/// \brief Includes all the set headers of the Boost.Plugin library.
|
|
|
|
#include <boost/config.hpp>
|
|
#include <boost/plugin/shared_library.hpp>
|
|
#include <boost/plugin/alias.hpp>
|
|
#include <boost/plugin/refcountable.hpp>
|
|
|
|
#ifdef BOOST_HAS_PRAGMA_ONCE
|
|
# pragma once
|
|
#endif
|
|
|
|
#endif // BOOST_PLUGIN_PLUGIN_HPP
|
|
|