// Copyright (c) 2018-2025 Jean-Louis Leroy // Distributed under the Boost Software License, Version 1.0. // See accompanying file LICENSE_1_0.txt // or copy at http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_OPENMETHOD_POLICIES_STANDARD_ERROR_OUTPUT_HPP #define BOOST_OPENMETHOD_POLICIES_STANDARD_ERROR_OUTPUT_HPP #include #include namespace boost::openmethod::policies { //! @ref Writes to the C standard error stream. //! //! `stderr_output` writes to standard error using the C API. struct stderr_output : output { //! An OutputFn metafunction. template struct fn { //! A @ref LightweightOuputStream. static detail::ostderr os; }; }; template detail::ostderr stderr_output::fn::os; } // namespace boost::openmethod::policies #endif