OGS
Storage.h
Go to the documentation of this file.
1
13#pragma once
14
15#include <string>
16
17namespace MaterialLib
18{
19namespace PorousMedium
20{
22{
23public:
24 virtual ~Storage() = default;
26 virtual std::string getName() const = 0;
27
32 virtual double getValue(const double variable) const = 0;
33};
34
35} // namespace PorousMedium
36} // namespace MaterialLib
virtual std::string getName() const =0
Get model name.
virtual double getValue(const double variable) const =0