Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct vs_output_error_handler

boost::parser::vs_output_error_handler

Synopsis

// In header: <boost/parser/error_handling.hpp>


struct vs_output_error_handler : public boost::parser::stream_error_handler {

  // public member functions
  vs_output_error_handler();
  vs_output_error_handler(std::string_view);
  vs_output_error_handler(std::wstring_view);
};

Description

An error handler that prints to the Visual Studio debugger via calls to OutputDebugString().

vs_output_error_handler public member functions

  1. vs_output_error_handler();
  2. vs_output_error_handler(std::string_view filename);
  3. vs_output_error_handler(std::wstring_view filename);

PrevUpHomeNext