OGS
CreateLookupTable.h
Go to the documentation of this file.
1
11#pragma once
12
13#include <memory>
14#include <optional>
15#include <string>
16#include <vector>
17
18namespace ProcessLib
19{
20class ProcessVariable;
21
22namespace ComponentTransport
23{
24struct LookupTable;
25
26std::unique_ptr<LookupTable> createLookupTable(
27 std::optional<std::string> const tabular_file,
28 std::vector<std::vector<std::reference_wrapper<ProcessVariable>>> const&
29 process_variables);
30
31} // namespace ComponentTransport
32} // namespace ProcessLib
std::unique_ptr< LookupTable > createLookupTable(std::optional< std::string > const tabular_file, std::vector< std::vector< std::reference_wrapper< ProcessVariable > > > const &process_variables)