From 1db1aead612f1ac5539782341428df5587341f34 Mon Sep 17 00:00:00 2001 From: heck Date: Thu, 30 Jul 2020 01:29:40 +0200 Subject: [PATCH] move the new .hh files to new src/cxx/ --- src/cxx/passphrase_callback.hh | 8 +++++++- src/{ => cxx}/passphrase_callback.hxx | 0 2 files changed, 7 insertions(+), 1 deletion(-) rename src/{ => cxx}/passphrase_callback.hxx (100%) diff --git a/src/cxx/passphrase_callback.hh b/src/cxx/passphrase_callback.hh index 357b2c6..8482077 100644 --- a/src/cxx/passphrase_callback.hh +++ b/src/cxx/passphrase_callback.hh @@ -1,3 +1,5 @@ +#pragma once +#include namespace pEp { @@ -5,5 +7,9 @@ namespace pEp { char* passphraseRequiredCallback(); + template PEP_STATUS passphraseWrap( + PEP_STATUS f(PEP_SESSION, A...), PEP_SESSION session, A... a); }; -}; \ No newline at end of file +}; + +#include "passphrase_callback.hxx" \ No newline at end of file diff --git a/src/passphrase_callback.hxx b/src/cxx/passphrase_callback.hxx similarity index 100% rename from src/passphrase_callback.hxx rename to src/cxx/passphrase_callback.hxx