common.hpp 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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 common.hpp
  9. * \author Andrey Semashev
  10. * \date 14.03.2009
  11. *
  12. * This header includes other Boost.Log headers that are commonly used in logging applications.
  13. * Note that the header does not include any headers required to setup the library, as usually
  14. * they aren't needed in more than one translation unit of the application.
  15. */
  16. #ifndef BOOST_LOG_COMMON_HPP_INCLUDED_
  17. #define BOOST_LOG_COMMON_HPP_INCLUDED_
  18. #include <boost/log/detail/config.hpp>
  19. #include <boost/log/core.hpp>
  20. #include <boost/log/sources/global_logger_storage.hpp>
  21. #include <boost/log/sources/record_ostream.hpp>
  22. #include <boost/log/sources/basic_logger.hpp>
  23. #include <boost/log/sources/severity_logger.hpp>
  24. #include <boost/log/sources/channel_logger.hpp>
  25. #include <boost/log/sources/severity_channel_logger.hpp>
  26. #include <boost/log/sources/exception_handler_feature.hpp>
  27. #include <boost/log/attributes/constant.hpp>
  28. #include <boost/log/attributes/named_scope.hpp>
  29. #include <boost/log/attributes/scoped_attribute.hpp>
  30. #ifdef BOOST_HAS_PRAGMA_ONCE
  31. #pragma once
  32. #endif
  33. #endif // BOOST_LOG_COMMON_HPP_INCLUDED_