major update to pvDataCPP.html; minor updates while working on documentation

This commit is contained in:
Marty Kraimer
2014-05-01 10:33:01 -04:00
parent 20345ab0dd
commit 6510c10884
17 changed files with 8119 additions and 846 deletions

View File

@@ -50,9 +50,10 @@ void Convert::getString(StringBuilder buf,PVField const *pvField,int /*indentLev
{
// TODO indextLevel ignored
std::ostringstream strm;
PrinterPlain p;
p.setStream(strm);
p.print(*pvField);
strm << pvField->dumpValue(strm) << std::endl;
// PrinterPlain p;
// p.setStream(strm);
// p.print(*pvField);
strm.str().swap(*buf);
}