cereal
A C++11 library for serialization
|
A class containing various advanced options for the XML archive. More...
#include </home/shane/workspace/cereal/include/cereal/archives/xml.hpp>
Public Member Functions | |
Options (int precision_=std::numeric_limits< double >::max_digits10, bool indent_=true, bool outputType_=false, bool sizeAttributes_=true) | |
Specify specific options for the XMLOutputArchive. More... | |
Option Modifiers | |
An interface for setting option settings analogous to named parameters. | |
Options & | precision (int value) |
Sets the precision used for floaing point numbers. | |
Options & | indent (bool enable) |
Whether to indent each line of XML. | |
Options & | outputType (bool enable) |
Whether to output the type of each serialized object as an attribute. | |
Options & | sizeAttributes (bool enable) |
Whether dynamically sized containers (e.g. vector) output the size=dynamic attribute. | |
Static Public Member Functions | |
static Options | Default () |
Default options. | |
Friends | |
class | XMLOutputArchive |
A class containing various advanced options for the XML archive.
Options can either be directly passed to the constructor, or chained using the modifier functions for an interface analogous to named parameters
|
inlineexplicit |
Specify specific options for the XMLOutputArchive.
precision_ | The precision used for floating point numbers |
indent_ | Whether to indent each line of XML |
outputType_ | Whether to output the type of each serialized object as an attribute |
sizeAttributes_ | Whether dynamically sized containers output the size=dynamic attribute |