This commit is contained in:
Scott E. Graves 2024-10-09 09:18:25 -05:00
parent 8bb291bbd9
commit 6a97ad664b
7 changed files with 24 additions and 24 deletions

View File

@ -22,7 +22,6 @@
#ifndef INCLUDE_FILE_MANAGER_FILE_MANAGER_HPP_ #ifndef INCLUDE_FILE_MANAGER_FILE_MANAGER_HPP_
#define INCLUDE_FILE_MANAGER_FILE_MANAGER_HPP_ #define INCLUDE_FILE_MANAGER_FILE_MANAGER_HPP_
#include "database/db_common.hpp"
#include "events/event_system.hpp" #include "events/event_system.hpp"
#include "events/events.hpp" #include "events/events.hpp"
#include "file_manager/i_file_manager.hpp" #include "file_manager/i_file_manager.hpp"
@ -30,6 +29,7 @@
#include "file_manager/i_upload_manager.hpp" #include "file_manager/i_upload_manager.hpp"
#include "platform/platform.hpp" #include "platform/platform.hpp"
#include "types/repertory.hpp" #include "types/repertory.hpp"
#include "utils/db/sqlite/db_common.hpp"
#include "utils/file.hpp" #include "utils/file.hpp"
namespace repertory { namespace repertory {

View File

@ -23,8 +23,8 @@
#define INCLUDE_PROVIDERS_ENCRYPT_ENCRYPT_PROVIDER_HPP_ #define INCLUDE_PROVIDERS_ENCRYPT_ENCRYPT_PROVIDER_HPP_
#include "app_config.hpp" #include "app_config.hpp"
#include "database/db_common.hpp"
#include "providers/i_provider.hpp" #include "providers/i_provider.hpp"
#include "utils/db/sqlite/db_common.hpp"
#include "utils/encrypting_reader.hpp" #include "utils/encrypting_reader.hpp"
namespace repertory { namespace repertory {

View File

@ -22,8 +22,8 @@
#ifndef INCLUDE_PROVIDERS_META_DB_HPP_ #ifndef INCLUDE_PROVIDERS_META_DB_HPP_
#define INCLUDE_PROVIDERS_META_DB_HPP_ #define INCLUDE_PROVIDERS_META_DB_HPP_
#include "database/db_common.hpp"
#include "types/repertory.hpp" #include "types/repertory.hpp"
#include "utils/db/sqlite/db_common.hpp"
namespace repertory { namespace repertory {
class app_config; class app_config;
@ -68,9 +68,9 @@ public:
[[nodiscard]] auto remove_item_meta(const std::string &api_path, [[nodiscard]] auto remove_item_meta(const std::string &api_path,
const std::string &key) -> api_error; const std::string &key) -> api_error;
[[nodiscard]] auto rename_item_meta(const std::string &from_api_path, [[nodiscard]] auto
const std::string &to_api_path) rename_item_meta(const std::string &from_api_path,
-> api_error; const std::string &to_api_path) -> api_error;
[[nodiscard]] auto set_item_meta(const std::string &api_path, [[nodiscard]] auto set_item_meta(const std::string &api_path,
const std::string &key, const std::string &key,

View File

@ -22,16 +22,16 @@
#include "file_manager/file_manager.hpp" #include "file_manager/file_manager.hpp"
#include "app_config.hpp" #include "app_config.hpp"
#include "database/db_common.hpp"
#include "database/db_delete.hpp"
#include "database/db_insert.hpp"
#include "database/db_select.hpp"
#include "database/db_update.hpp"
#include "file_manager/events.hpp" #include "file_manager/events.hpp"
#include "providers/i_provider.hpp" #include "providers/i_provider.hpp"
#include "types/repertory.hpp" #include "types/repertory.hpp"
#include "types/startup_exception.hpp" #include "types/startup_exception.hpp"
#include "utils/common.hpp" #include "utils/common.hpp"
#include "utils/db/sqlite/db_common.hpp"
#include "utils/db/sqlite/db_delete.hpp"
#include "utils/db/sqlite/db_insert.hpp"
#include "utils/db/sqlite/db_select.hpp"
#include "utils/db/sqlite/db_update.hpp"
#include "utils/encrypting_reader.hpp" #include "utils/encrypting_reader.hpp"
#include "utils/error_utils.hpp" #include "utils/error_utils.hpp"
#include "utils/file.hpp" #include "utils/file.hpp"

View File

@ -21,14 +21,14 @@
*/ */
#include "providers/encrypt/encrypt_provider.hpp" #include "providers/encrypt/encrypt_provider.hpp"
#include "database/db_common.hpp"
#include "database/db_delete.hpp"
#include "database/db_insert.hpp"
#include "database/db_select.hpp"
#include "events/event_system.hpp" #include "events/event_system.hpp"
#include "events/events.hpp" #include "events/events.hpp"
#include "types/repertory.hpp" #include "types/repertory.hpp"
#include "utils/collection.hpp" #include "utils/collection.hpp"
#include "utils/db/sqlite/db_common.hpp"
#include "utils/db/sqlite/db_delete.hpp"
#include "utils/db/sqlite/db_insert.hpp"
#include "utils/db/sqlite/db_select.hpp"
#include "utils/encrypting_reader.hpp" #include "utils/encrypting_reader.hpp"
#include "utils/encryption.hpp" #include "utils/encryption.hpp"
#include "utils/file_utils.hpp" #include "utils/file_utils.hpp"

View File

@ -22,10 +22,10 @@
#include "providers/meta_db.hpp" #include "providers/meta_db.hpp"
#include "app_config.hpp" #include "app_config.hpp"
#include "database/db_common.hpp" #include "utils/db/sqlite/db_common.hpp"
#include "database/db_delete.hpp" #include "utils/db/sqlite/db_delete.hpp"
#include "database/db_insert.hpp" #include "utils/db/sqlite/db_insert.hpp"
#include "database/db_select.hpp" #include "utils/db/sqlite/db_select.hpp"
#include "utils/error_utils.hpp" #include "utils/error_utils.hpp"
#include "utils/path.hpp" #include "utils/path.hpp"
#include "utils/string.hpp" #include "utils/string.hpp"

View File

@ -21,11 +21,11 @@
*/ */
#include "test_common.hpp" #include "test_common.hpp"
#include "database/db_common.hpp" #include "utils/db/sqlite/db_common.hpp"
#include "database/db_delete.hpp" #include "utils/db/sqlite/db_delete.hpp"
#include "database/db_insert.hpp" #include "utils/db/sqlite/db_insert.hpp"
#include "database/db_select.hpp" #include "utils/db/sqlite/db_select.hpp"
#include "database/db_update.hpp" #include "utils/db/sqlite/db_update.hpp"
#include "utils/path.hpp" #include "utils/path.hpp"
namespace repertory { namespace repertory {