12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- #ifndef BOOST_LOG_UTILITY_OPEN_MODE_HPP_INCLUDED_
- #define BOOST_LOG_UTILITY_OPEN_MODE_HPP_INCLUDED_
- #include <boost/log/detail/config.hpp>
- #include <boost/log/detail/header.hpp>
- #ifdef BOOST_HAS_PRAGMA_ONCE
- #pragma once
- #endif
- namespace boost {
- BOOST_LOG_OPEN_NAMESPACE
- namespace open_mode {
- struct create_only_tag {} const create_only = create_only_tag();
- struct open_only_tag {} const open_only = open_only_tag();
- struct open_or_create_tag {} const open_or_create = open_or_create_tag();
- }
- BOOST_LOG_CLOSE_NAMESPACE
- }
- #include <boost/log/detail/footer.hpp>
- #endif
|