https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 961c4a1ba9af5aa8dcc61aaf8e2d80ad8c7f0d3e authored by Tom Fischer on 30 August 2021, 18:22:23 UTC
Merge branch 'MeshLibElementCleanup-ReImplementGetContent' into 'master'
Tip revision: 961c4a1
CreateSecondaryVariables.h
/**
 * \file
 * \copyright
 * Copyright (c) 2012-2021, OpenGeoSys Community (http://www.opengeosys.org)
 *            Distributed under a Modified BSD License.
 *              See accompanying file LICENSE.txt or
 *              http://www.opengeosys.org/project/license
 *
 */

#pragma once

namespace BaseLib
{
class ConfigTree;
}
namespace ProcessLib
{
class SecondaryVariableCollection;
}

namespace ProcessLib
{
void createSecondaryVariables(BaseLib::ConfigTree const& config,
                              SecondaryVariableCollection& secondary_variables);

}  // namespace ProcessLib
back to top