added option to FastWriter which omits the trailing new line character

This commit is contained in:
Don Milham
2014-09-02 17:09:07 -06:00
parent 3515db184a
commit 5bf16105b5
2 changed files with 8 additions and 2 deletions

View File

@@ -180,16 +180,19 @@ Writer::~Writer() {}
// //////////////////////////////////////////////////////////////////
FastWriter::FastWriter()
: yamlCompatiblityEnabled_(false), dropNullPlaceholders_(false) {}
: yamlCompatiblityEnabled_(false), dropNullPlaceholders_(false), omitEndingLineFeed_(false) {}
void FastWriter::enableYAMLCompatibility() { yamlCompatiblityEnabled_ = true; }
void FastWriter::dropNullPlaceholders() { dropNullPlaceholders_ = true; }
void FastWriter::omitEndingLineFeed() { omitEndingLineFeed_ = true; }
std::string FastWriter::write(const Value &root) {
document_ = "";
writeValue(root);
document_ += "\n";
if (!omitEndingLineFeed_)
document_ += "\n";
return document_;
}