cpp-msgpack-light 0.3.0
A light library to serialize MessagePack.
|
Definition of macros to support serialization of struct types. More...
#include "msgpack_light/details/concatenate_macro.h"
#include "msgpack_light/details/count_arguments_macro.h"
#include "msgpack_light/details/invoke_macro.h"
#include "msgpack_light/type_support/details/struct_impl.h"
Go to the source code of this file.
Macros | |
#define | MSGPACK_LIGHT_STRUCT_ARRAY(STRUCT, ...) |
Macro to generate class to support serialization of struct into arrays. | |
#define | MSGPACK_LIGHT_STRUCT_MAP(STRUCT, ...) |
Macro to generate class to support serialization of struct into maps. |
Definition of macros to support serialization of struct types.
Definition in file struct.h.
#define MSGPACK_LIGHT_STRUCT_ARRAY | ( | STRUCT, | |
... ) |
Macro to generate class to support serialization of struct into arrays.
STRUCT | Type of the struct. Remaining arguments are treated as parameter names. |
#define MSGPACK_LIGHT_STRUCT_MAP | ( | STRUCT, | |
... ) |
Macro to generate class to support serialization of struct into maps.
STRUCT | Type of the struct. Remaining arguments are treated as parameter names. |