aboutsummaryrefslogtreecommitdiff
path: root/include/axolotl/session.hh
diff options
context:
space:
mode:
Diffstat (limited to 'include/axolotl/session.hh')
-rw-r--r--include/axolotl/session.hh17
1 files changed, 17 insertions, 0 deletions
diff --git a/include/axolotl/session.hh b/include/axolotl/session.hh
index 1c3395a..93c0b64 100644
--- a/include/axolotl/session.hh
+++ b/include/axolotl/session.hh
@@ -78,6 +78,23 @@ struct Session {
};
+std::size_t pickle_length(
+ Session const & value
+);
+
+
+std::uint8_t * pickle(
+ std::uint8_t * pos,
+ Session const & value
+);
+
+
+std::uint8_t const * unpickle(
+ std::uint8_t const * pos, std::uint8_t const * end,
+ Session & value
+);
+
+
} // namespace axolotl
#endif /* AXOLOTL_SESSION_HH_ */