From 25b91004695d388d82a4d9773a24b1a4d75af577 Mon Sep 17 00:00:00 2001 From: Volker Birk Date: Wed, 10 Aug 2016 14:28:50 +0200 Subject: [PATCH] register SyncMixIn class --- src/pEpmodule.cc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/pEpmodule.cc b/src/pEpmodule.cc index a644028..2479cb6 100644 --- a/src/pEpmodule.cc +++ b/src/pEpmodule.cc @@ -4,6 +4,7 @@ #include #include "basic_api.hh" #include "message_api.hh" +#include "sync_mixin.hh" namespace pEp { namespace PythonAdapter { @@ -193,6 +194,10 @@ BOOST_PYTHON_MODULE(pEp) def("encrypt_message", &encrypt_message, "encrypt message in memory"); def("decrypt_message", &decrypt_message, "decrypt message in memory"); + // key sync API + + auto sync_mixin_class = class_("SyncMixIn", "p≡p Sync MixIn"); + // init() and release() PyModuleDef * _def = PyModule_GetDef(scope().ptr());