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