20 lines
532 B
C++
20 lines
532 B
C++
#ifndef SIMULATIONMODELFACTORY_HPP
|
|
#define SIMULATIONMODELFACTORY_HPP
|
|
|
|
#include "chronoseulerlinearsimulationmodel.hpp"
|
|
#include "chronoseulernonlinearsimulationmodel.hpp"
|
|
#include "chronoseulersimulationmodel.hpp"
|
|
#include "der_leimer.hpp"
|
|
#include "drmsimulationmodel.hpp"
|
|
#include "linearsimulationmodel.hpp"
|
|
#include <string>
|
|
|
|
class SimulationModelFactory {
|
|
public:
|
|
SimulationModelFactory();
|
|
static std::unique_ptr<SimulationModel>
|
|
create(const std::string &simulationModelLabel);
|
|
};
|
|
|
|
#endif // SIMULATIONMODELFACTORY_HPP
|