From 4b8ac300c8087d2d37516915cbaa2287ce5b90db Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Fri, 2 Aug 2024 14:23:36 -0500 Subject: [PATCH] update --- repertory/librepertory/include/platform/platform.hpp | 2 ++ repertory/librepertory/include/utils/encrypting_reader.hpp | 2 +- .../src/providers/encrypt/encrypt_provider.cpp | 1 + repertory/librepertory/src/utils/encrypting_reader.cpp | 7 +++---- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/repertory/librepertory/include/platform/platform.hpp b/repertory/librepertory/include/platform/platform.hpp index 5dc25ce1..184ae0d4 100644 --- a/repertory/librepertory/include/platform/platform.hpp +++ b/repertory/librepertory/include/platform/platform.hpp @@ -24,5 +24,7 @@ #include "platform/unix_platform.hpp" #include "platform/win32_platform.hpp" +#include "utils/unix.hpp" +#include "utils/windows.hpp" #endif // INCLUDE_PLATFORM_PLATFORM_HPP_ diff --git a/repertory/librepertory/include/utils/encrypting_reader.hpp b/repertory/librepertory/include/utils/encrypting_reader.hpp index e5dec4eb..88b1eda2 100644 --- a/repertory/librepertory/include/utils/encrypting_reader.hpp +++ b/repertory/librepertory/include/utils/encrypting_reader.hpp @@ -24,7 +24,7 @@ #include "types/repertory.hpp" #include "utils/encryption.hpp" -#include "utils/file_utils.hpp" +#include "utils/native_file.hpp" namespace repertory::utils::encryption { class encrypting_reader final { diff --git a/repertory/librepertory/src/providers/encrypt/encrypt_provider.cpp b/repertory/librepertory/src/providers/encrypt/encrypt_provider.cpp index 3a3d7b34..4bd75ec5 100644 --- a/repertory/librepertory/src/providers/encrypt/encrypt_provider.cpp +++ b/repertory/librepertory/src/providers/encrypt/encrypt_provider.cpp @@ -30,6 +30,7 @@ #include "utils/collection.hpp" #include "utils/encrypt.hpp" #include "utils/encrypting_reader.hpp" +#include "utils/file_utils.hpp" #include "utils/path.hpp" #include "utils/polling.hpp" diff --git a/repertory/librepertory/src/utils/encrypting_reader.cpp b/repertory/librepertory/src/utils/encrypting_reader.cpp index 27c2e6af..5645a3fa 100644 --- a/repertory/librepertory/src/utils/encrypting_reader.cpp +++ b/repertory/librepertory/src/utils/encrypting_reader.cpp @@ -21,13 +21,12 @@ */ #include "utils/encrypting_reader.hpp" -#include "events/event_system.hpp" -#include "events/events.hpp" +#include "platform/platform.hpp" #include "types/repertory.hpp" #include "utils/collection.hpp" -#include "utils/encrypt.hpp" +#include "utils/common.hpp" #include "utils/error_utils.hpp" -#include "utils/utils.hpp" +#include "utils/file.hpp" namespace repertory::utils::encryption { class encrypting_streambuf final : public encrypting_reader::streambuf {