setup.hpp 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  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 setup.hpp
  9. * \author Andrey Semashev
  10. * \date 16.02.2013
  11. *
  12. * This header includes all library setup helpers.
  13. */
  14. #ifndef BOOST_LOG_UTILITY_SETUP_HPP_INCLUDED_
  15. #define BOOST_LOG_UTILITY_SETUP_HPP_INCLUDED_
  16. #include <boost/log/detail/setup_config.hpp>
  17. #include <boost/log/utility/setup/common_attributes.hpp>
  18. #include <boost/log/utility/setup/console.hpp>
  19. #include <boost/log/utility/setup/file.hpp>
  20. #include <boost/log/utility/setup/from_settings.hpp>
  21. #include <boost/log/utility/setup/from_stream.hpp>
  22. #include <boost/log/utility/setup/settings.hpp>
  23. #include <boost/log/utility/setup/settings_parser.hpp>
  24. #include <boost/log/utility/setup/filter_parser.hpp>
  25. #include <boost/log/utility/setup/formatter_parser.hpp>
  26. #ifdef BOOST_HAS_PRAGMA_ONCE
  27. #pragma once
  28. #endif
  29. #endif // BOOST_LOG_UTILITY_SETUP_HPP_INCLUDED_