annotate DEPENDENCIES/generic/include/boost/log/common.hpp @ 125:34e428693f5d vext

Vext -> Repoint
author Chris Cannam
date Thu, 14 Jun 2018 11:15:39 +0100
parents c530137014c0
children
rev   line source
Chris@16 1 /*
Chris@101 2 * Copyright Andrey Semashev 2007 - 2015.
Chris@16 3 * Distributed under the Boost Software License, Version 1.0.
Chris@16 4 * (See accompanying file LICENSE_1_0.txt or copy at
Chris@16 5 * http://www.boost.org/LICENSE_1_0.txt)
Chris@16 6 */
Chris@16 7 /*!
Chris@16 8 * \file common.hpp
Chris@16 9 * \author Andrey Semashev
Chris@16 10 * \date 14.03.2009
Chris@16 11 *
Chris@16 12 * This header includes other Boost.Log headers that are commonly used in logging applications.
Chris@16 13 * Note that the header does not include any headers required to setup the library, as usually
Chris@16 14 * they aren't needed in more than one translation unit of the application.
Chris@16 15 */
Chris@16 16
Chris@16 17 #ifndef BOOST_LOG_COMMON_HPP_INCLUDED_
Chris@16 18 #define BOOST_LOG_COMMON_HPP_INCLUDED_
Chris@16 19
Chris@16 20 #include <boost/log/detail/config.hpp>
Chris@16 21
Chris@16 22 #include <boost/log/core.hpp>
Chris@16 23
Chris@16 24 #include <boost/log/sources/global_logger_storage.hpp>
Chris@16 25 #include <boost/log/sources/record_ostream.hpp>
Chris@16 26
Chris@16 27 #include <boost/log/sources/basic_logger.hpp>
Chris@16 28 #include <boost/log/sources/severity_logger.hpp>
Chris@16 29 #include <boost/log/sources/channel_logger.hpp>
Chris@16 30 #include <boost/log/sources/severity_channel_logger.hpp>
Chris@16 31 #include <boost/log/sources/exception_handler_feature.hpp>
Chris@16 32
Chris@16 33 #include <boost/log/attributes/constant.hpp>
Chris@16 34 #include <boost/log/attributes/named_scope.hpp>
Chris@16 35 #include <boost/log/attributes/scoped_attribute.hpp>
Chris@16 36
Chris@16 37 #ifdef BOOST_HAS_PRAGMA_ONCE
Chris@16 38 #pragma once
Chris@16 39 #endif
Chris@16 40
Chris@16 41 #endif // BOOST_LOG_COMMON_HPP_INCLUDED_