MySources/chronoseulerlinearsimulatio...

16 lines
517 B
C++

#ifndef CHRONOSEULERLINEARSIMULATIONMODEL_HPP
#define CHRONOSEULERLINEARSIMULATIONMODEL_HPP
#include "chronoseulersimulationmodel.hpp"
class ChronosEulerLinearSimulationModel : public ChronosEulerSimulationModel {
public:
ChronosEulerLinearSimulationModel();
SimulationResults
executeSimulation(const std::shared_ptr<SimulationJob> &pJob);
inline static std::string label{"Linear_" +
ChronosEulerSimulationModel::label};
};
#endif // CHRONOSEULERLINEARSIMULATIONMODEL_HPP