#ifndef SIM_PROPAGATOR_H #define SIM_PROPAGATOR_H #include "sim/DESolver.h" #include namespace sim { class Propagator { public: Propagator(); private: std::unique_ptr solver; }; } // namespace sim #endif // SIM_PROPAGATOR_H