1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #ifndef BOOST_PROCESS_V2_ERROR_HPP
- #define BOOST_PROCESS_V2_ERROR_HPP
- #include <boost/process/v2/detail/config.hpp>
- BOOST_PROCESS_V2_BEGIN_NAMESPACE
- namespace error
- {
- enum utf8_conv_error
- {
- insufficient_buffer = 1,
- invalid_character,
- };
- extern BOOST_PROCESS_V2_DECL const error_category& get_utf8_category();
- static const error_category& utf8_category = get_utf8_category();
- extern BOOST_PROCESS_V2_DECL const error_category& get_exit_code_category();
- static const error_category& exit_code_category = get_exit_code_category();
- }
- BOOST_PROCESS_V2_END_NAMESPACE
- #endif
|