Function toml_writer
Synopsis
#include <include/cpptoml.h>
toml_writer(std::ostream &s, const std::string &indent_space="\t")
Description
Construct a toml_writer that will write to the given stream
Source
Lines 3307-3311 in include/cpptoml.h.
toml_writer(std::ostream& s, const std::string& indent_space = "\t")
: stream_(s), indent_(indent_space), has_naked_endline_(false)
{
// nothing
}