Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

Struct log_checkpoint_data

boost::unit_test::log_checkpoint_data — Collection of log checkpoint attributes.

Synopsis

// In header: <boost/test/unit_test_log_formatter.hpp>


struct log_checkpoint_data {

  // public member functions
  void clear();

  // public data members
  const_string m_file_name;  // log checkpoint file name 
  std::size_t m_line_num;  // log checkpoint file name 
  std::string m_message;  // log checkpoint message 
};

Description

log_checkpoint_data public member functions

  1. void clear();

PrevUpHomeNext