/* * include/framework/util/Configuration.h * * Copyright (C) 2023-2024 Douglas B. Rumbaugh * * Distributed under the Modified BSD License. * */ #pragma once #include "framework/reconstruction/ReconstructionPolicy.h" #include "util/types.h" #include "framework/interface/Scheduler.h" #include namespace de { template QueryType, DeletePolicy D, SchedulerInterface SchedType> class DEConfiguration { DEConfiguration(std::unique_ptr> recon_policy) : m_recon_policy(recon_policy) {} public: std::unique_ptr> m_recon_policy; }; } // namespace de