aboutsummaryrefslogtreecommitdiff
path: root/lib/events
diff options
context:
space:
mode:
authorTobias Fella <fella@posteo.de>2022-02-09 22:18:42 +0100
committerTobias Fella <fella@posteo.de>2022-02-09 22:18:42 +0100
commit94f34099b8a4c8a40cc99496ceaf9ad5b285c08f (patch)
tree61a47612849277c26db8722b4d0a231d2fb0d29b /lib/events
parent840aead6e77a7ab8605bd2f70820ddd2219bdad5 (diff)
downloadlibquotient-94f34099b8a4c8a40cc99496ceaf9ad5b285c08f.tar.gz
libquotient-94f34099b8a4c8a40cc99496ceaf9ad5b285c08f.zip
Move includes to .cpp file
Diffstat (limited to 'lib/events')
-rw-r--r--lib/events/encryptedfile.cpp4
-rw-r--r--lib/events/encryptedfile.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/events/encryptedfile.cpp b/lib/events/encryptedfile.cpp
index 5ec344bb..74119127 100644
--- a/lib/events/encryptedfile.cpp
+++ b/lib/events/encryptedfile.cpp
@@ -3,6 +3,10 @@
// SPDX-License-Identifier: LGPL-2.1-or-later
#include "encryptedfile.h"
+#include "logging.h"
+
+#include <openssl/evp.h>
+#include <QtCore/QCryptographicHash>
using namespace Quotient;
diff --git a/lib/events/encryptedfile.h b/lib/events/encryptedfile.h
index f271d345..6199be8e 100644
--- a/lib/events/encryptedfile.h
+++ b/lib/events/encryptedfile.h
@@ -5,10 +5,6 @@
#pragma once
#include "converters.h"
-#include "logging.h"
-
-#include <openssl/evp.h>
-#include <QtCore/QCryptographicHash>
namespace Quotient {
/**