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 scan_result

boost::log::sinks::file::scan_result — The structure contains filesystem scanning results.

Synopsis

// In header: <boost/log/sinks/text_file_backend.hpp>


struct scan_result {
  // construct/copy/destruct
  scan_result() noexcept;

  // public data members
  uintmax_t found_count;  // The number of found files. 
  boost::optional< unsigned int > last_file_counter;  // If populated, the largest file counter that was used in the found file names. 
};

Description

scan_result public construct/copy/destruct

  1. scan_result() noexcept;

PrevUpHomeNext