Revision 47efb78cdd3532bed0283271a57fd33d05431b1b authored by Lars Bilke on 09 December 2021, 07:28:25 UTC, committed by Lars Bilke on 09 December 2021, 07:28:25 UTC
Updated Conan CMake integration

See merge request ogs/ogs!3910
2 parent s 2683453 + bffa1e6
Raw File
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