OGS
CreateChemicalReactionData.h
Go to the documentation of this file.
1
11#pragma once
12
13#include <memory>
14#include <vector>
15
16namespace BaseLib
17{
18class ConfigTree;
19}
20
21namespace ChemistryLib
22{
23namespace SelfContainedSolverData
24{
25struct ChemicalReaction;
26
27std::vector<std::unique_ptr<ChemicalReaction>> createChemicalReactionData(
28 BaseLib::ConfigTree const& config);
29} // namespace SelfContainedSolverData
30} // namespace ChemistryLib
std::vector< std::unique_ptr< ChemicalReaction > > createChemicalReactionData(BaseLib::ConfigTree const &config)