MySources/simulationmodel.hpp

14 lines
272 B
C++

#ifndef SIMULATIONMODEL_HPP
#define SIMULATIONMODEL_HPP
#include "simulation_structs.hpp"
class SimulationModel
{
public:
virtual SimulationResults executeSimulation(const std::shared_ptr<SimulationJob> &simulationJob)
= 0;
};
#endif // SIMULATIONMODEL_HPP