• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  *          Copyright Andrey Semashev 2007 - 2015.
3  * Distributed under the Boost Software License, Version 1.0.
4  *    (See accompanying file LICENSE_1_0.txt or copy at
5  *          http://www.boost.org/LICENSE_1_0.txt)
6  */
7 /*!
8  * \file   log/core.hpp
9  * \author Andrey Semashev
10  * \date   19.04.2007
11  *
12  * This header includes Boost.Log headers related to the logging core.
13  */
14 
15 #ifndef BOOST_LOG_CORE_HPP_INCLUDED_
16 #define BOOST_LOG_CORE_HPP_INCLUDED_
17 
18 #include <boost/log/detail/config.hpp>
19 
20 #include <boost/log/core/core.hpp>
21 #include <boost/log/core/record.hpp>
22 #include <boost/log/core/record_view.hpp>
23 
24 #ifdef BOOST_HAS_PRAGMA_ONCE
25 #pragma once
26 #endif
27 
28 #endif // BOOST_LOG_CORE_HPP_INCLUDED_
29