summaryrefslogtreecommitdiffstats
path: root/include/framework/util
diff options
context:
space:
mode:
Diffstat (limited to 'include/framework/util')
-rw-r--r--include/framework/util/Configuration.h14
1 files changed, 11 insertions, 3 deletions
diff --git a/include/framework/util/Configuration.h b/include/framework/util/Configuration.h
index f4b0364..0477095 100644
--- a/include/framework/util/Configuration.h
+++ b/include/framework/util/Configuration.h
@@ -8,13 +8,21 @@
*/
#pragma once
+#include "framework/reconstruction/ReconstructionPolicy.h"
+#include "util/types.h"
+#include "framework/interface/Scheduler.h"
#include <cstdlib>
-#include <utility>
namespace de {
-enum class LayoutPolicy { LEVELING, TEIRING, BSM };
+template <ShardInterface ShardType, QueryInterface<ShardType> QueryType,
+DeletePolicy D, SchedulerInterface SchedType>
+class DEConfiguration {
+ DEConfiguration(std::unique_ptr<ReconstructionPolicy<ShardType, QueryType>> recon_policy)
+ : m_recon_policy(recon_policy) {}
-enum class DeletePolicy { TOMBSTONE, TAGGING };
+ public:
+ std::unique_ptr<ReconstructionPolicy<ShardType, QueryType>> m_recon_policy;
+};
} // namespace de