OGS
CreateVermaPruessModel.h
Go to the documentation of this file.
1
10#pragma once
11
12#include <memory>
13#include <vector>
14
15namespace BaseLib
16{
17class ConfigTree;
18}
19
20namespace MaterialPropertyLib
21{
22class Property;
23}
24
25namespace ParameterLib
26{
27struct ParameterBase;
28}
29
30namespace MaterialPropertyLib
31{
32std::unique_ptr<Property> createVermaPruessModel(
33 BaseLib::ConfigTree const& config,
34 std::vector<std::unique_ptr<ParameterLib::ParameterBase>> const&
35 parameters);
36} // namespace MaterialPropertyLib
std::unique_ptr< Property > createVermaPruessModel(BaseLib::ConfigTree const &config, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const &parameters)