Use common code formatting style.

This commit is contained in:
SET
2020-11-14 14:46:28 +01:00
parent a7146a07b2
commit a721bb0225
16 changed files with 144 additions and 82 deletions

View File

@@ -13,11 +13,12 @@
#include <gpgme.h>
#include <gpgme++/error.h>
class GpgMECWorker {
class GpgMECWorker
{
public:
GpgMECWorker();
virtual ~GpgMECWorker();
/**
* Deleting keys must be done with the C API because
* gpgmepp does not provide a way to use GPGME_DELETE_FORCE,
@@ -29,7 +30,7 @@ public:
* @return
*/
bool DeleteKey(const char * fpr, bool secret, GpgME::Error& e);
private:
gpgme_ctx_t c_ctx;
};