MCPcopy Create free account
hub / github.com/EQEmu/EQEmu / write

Method write

common/json/jsoncpp.cpp:4415–4421  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4413void FastWriter::omitEndingLineFeed() { omitEndingLineFeed_ = true; }
4414
4415JSONCPP_STRING FastWriter::write(const Value& root) {
4416 document_ = "";
4417 writeValue(root);
4418 if (!omitEndingLineFeed_)
4419 document_ += "\n";
4420 return document_;
4421}
4422
4423void FastWriter::writeValue(const Value& value) {
4424 switch (value.type()) {

Callers 4

toStyledStringMethod · 0.45
writeStringFunction · 0.45
jsoncpp.cppFile · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected