diff options
Diffstat (limited to 'src/core/GpgFrontendCore.h')
-rw-r--r-- | src/core/GpgFrontendCore.h | 57 |
1 files changed, 17 insertions, 40 deletions
diff --git a/src/core/GpgFrontendCore.h b/src/core/GpgFrontendCore.h index 0b433b96..14b1f878 100644 --- a/src/core/GpgFrontendCore.h +++ b/src/core/GpgFrontendCore.h @@ -1,5 +1,5 @@ /** - * Copyright (C) 2021 Saturneric + * Copyright (C) 2021 Saturneric <[email protected]> * * This file is part of GpgFrontend. * @@ -20,56 +20,33 @@ * the gpg4usb project, which is under GPL-3.0-or-later. * * All the source code of GpgFrontend was modified and released by - * Saturneric<[email protected]> starting on May 12, 2021. + * Saturneric <[email protected]> starting on May 12, 2021. * * SPDX-License-Identifier: GPL-3.0-or-later * */ -#ifndef GPGFRONTEND_GPGFRONTENDCORE_H -#define GPGFRONTEND_GPGFRONTENDCORE_H +#pragma once -#include "GpgFrontend.h" - -// gnupg -#include <gpgme.h> +// Qt +#include <QtCore> -// std includes -#include <cassert> -#include <filesystem> -#include <functional> -#include <map> -#include <memory> -#include <mutex> -#include <random> -#include <shared_mutex> -#include <stdexcept> -#include <string> -#include <typeinfo> -#include <utility> +// std +#include <cstdint> #include <vector> -// boost includes -#include <boost/date_time.hpp> -#include <boost/date_time/posix_time/conversion.hpp> -#include <boost/filesystem/operations.hpp> -#include <boost/filesystem/path.hpp> -#include <boost/format.hpp> +// spdlog library configuration +#define SPDLOG_ACTIVE_LEVEL SPDLOG_LEVEL_TRACE +#include <spdlog/spdlog.h> -// Qt includes -#include <QtCore> +// logger fmt +#include "log/QtLoggerFmt.h" -// libconfig includes -#include <libconfig.h++> - -// libarchive includes -#include <libarchive/libarchive/archive.h> -#include <libarchive/libarchive/archive_entry.h> +// gpgme library +#include <gpgme.h> -// json includes -#include <nlohmann/json.hpp> +// logbal includes or macroes +#include "GpgFrontend.h" -// dll export macro +// dll export macroes #include "GpgFrontendCoreExport.h" - -#endif // GPGFRONTEND_GPGFRONTENDCORE_H |