code reorg
Some checks failed
BlockStorage/repertory_osx_builds/pipeline/head There was a failure building this commit
BlockStorage/repertory_linux_builds/pipeline/head There was a failure building this commit

This commit is contained in:
2023-12-10 16:53:54 -06:00
parent 7fe7299e7c
commit daefa58c0c
11 changed files with 319 additions and 312 deletions

View File

@@ -23,6 +23,7 @@
#define INCLUDE_PROVIDERS_ENCRYPT_ENCRYPT_PROVIDER_HPP_
#include "app_config.hpp"
#include "database/db_common.hpp"
#include "providers/i_provider.hpp"
#include "utils/encrypting_reader.hpp"
@@ -49,7 +50,7 @@ private:
private:
app_config &config_;
db3_t db_;
db::db3_t db_;
private:
i_file_manager *fm_ = nullptr;

View File

@@ -22,6 +22,7 @@
#ifndef INCLUDE_PROVIDERS_META_DB_HPP_
#define INCLUDE_PROVIDERS_META_DB_HPP_
#include "database/db_common.hpp"
#include "types/repertory.hpp"
namespace repertory {
@@ -38,7 +39,7 @@ public:
auto operator=(meta_db &&) -> meta_db & = delete;
private:
db3_t db_;
db::db3_t db_;
constexpr static const auto table_name = "meta";
private: