#include <s11n.net/s11n/io/data_node_format.hpp>
#include <s11n.net/s11n/traits.hpp>
Go to the source code of this file.
Namespaces | |
namespace | s11n |
namespace | s11n::io |
namespace | s11n::io::sharing |
Defines | |
#define | compact_SERIALIZER_H_INCLUDED 1 |
#define | MAGIC_COOKIE_COMPACT "51191011" |
#define | INDENT(LEVEL, ECHO) indent = ""; for( size_t i = 0; i < depth + LEVEL; i++ ) { indent += '\t'; if(ECHO) dest << '\t'; } |
#define | OS_INT(C, W) dest.width(W);dest<<std::hex<<std::right<<(unsigned int)(C); |
#define | INSERT(vaR, WIDTH) |
|
Definition at line 2 of file compact_serializer.hpp. |
|
|
Value: sizE = vaR.size(); OS_INT(sizE,WIDTH); \ for( ins = 0; ins < sizE; ins++ ) {\ /*OS_INT(vaR[ins],charwidth);*/ \ dest << (unsigned char) vaR[ins]; \ }; Referenced by s11n::io::compact_serializer< NodeType >::serialize(). |
|
Definition at line 14 of file compact_serializer.hpp. Referenced by s11n::io::compact_serializer< NodeType >::compact_serializer(). |
|
Referenced by s11n::io::compact_serializer< NodeType >::serialize(). |