Formatter which is specialized for use on streams which outputs the original notation format for LLSD. More...
#include <llsdserialize.h>
Formatter which is specialized for use on streams which outputs the original notation format for LLSD.
This class is useful for doing inline stream operations. For example:
LLSD sd;
sd["foo"] = "bar";
std::stringstream params;
params << "[{'version':i1}," << LLSDOStreamer<LLSDNotationFormatter>(sd) << "]";