Boost C++ Libraries

PrevUpHomeNext

Global csv_dec

boost::log::formatters::csv_dec

Synopsis

// In header: <boost/log/formatters/csv_decorator.hpp>

implementation_defined csv_dec;

Description

CSV-style decorator generator object. The decorator doubles double quotes that may be found in the output. See http://en.wikipedia.org/wiki/Comma-separated_values for more information on the CSV format. The generator provides operator[] that can be used to construct the actual decorator. For example:

csv_dec[ attr< std::string >("MyAttr") ]


PrevUpHomeNext