#ifndef IOPTIMIZER_H #define IOPTIMIZER_H #include "json.hpp" #include #include "IManager.h" namespace mdd { class IOptimizer : public IManager { public: typedef std::shared_ptr Ptr; virtual bool connect(std::shared_ptr module) = 0; virtual bool setEvaluation(std::string func) = 0; virtual double update() = 0; }; } #endif // !IOPTIMIZER_H