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_entry_data

boost::unit_test::log_entry_data — Collection of log entry attributes.

Synopsis

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


struct log_entry_data {
  // construct/copy/destruct
  log_entry_data();

  // public member functions
  void clear();

  // public data members
  std::string m_file_name;  // log entry file name 
  std::size_t m_line_num;  // log entry line number 
  log_level m_level;  // log entry level 
};

Description

log_entry_data public construct/copy/destruct

  1. log_entry_data();

log_entry_data public member functions

  1. void clear();

PrevUpHomeNext