Boost C++ Libraries

PrevUpHomeNext

Header <boost/log/sinks/text_file_backend.hpp>

Andrey Semashev

09.06.2009

The header contains implementation of a text file sink backend.

namespace boost {
  namespace log {
    namespace sinks {
      template<typename CharT> class basic_text_file_backend;

      typedef basic_text_file_backend< char > text_file_backend;  // Convenience typedef for narrow-character logging. 
      typedef basic_text_file_backend< wchar_t > wtext_file_backend;  // Convenience typedef for wide-character logging. 
      namespace file {
        struct collector;

        // The enumeration of the stored files scan methods. 
        enum scan_method { no_scan, scan_matching, scan_all };
        template<typename... ArgsT> 
          shared_ptr< collector > make_collector(ArgsT...const &);
      }
    }
  }
}

PrevUpHomeNext