|
| template<class T , class... Tags, size_t... Indices> |
| void | detail::serializePack (const T &src, OutputStream *dst, const TagPack< Tags... > &pack, std::index_sequence< Indices... >) |
| |
| template<class T , class... Tags, size_t... Indices> |
| void | detail::deserializePack (InputStream &src, T *dst, const TagPack< Tags... > &pack, std::index_sequence< Indices... >) |
| |
| template<class T , class... Tags> |
| void | serialize (const T &src, OutputStream *dst, const TagPack< Tags... > &pack) |
| |
| template<class T , class... Tags> |
| void | deserialize (InputStream &src, T *dst, const TagPack< Tags... > &pack) |
| |