Revision 62a605f9c0337f86510df730911f3bf622b3848f authored by Dmitri Naumov on 05 May 2021, 08:08:32 UTC, committed by Dmitry Yu. Naumov on 11 May 2021, 20:19:26 UTC
1 parent 51c2d54
Raw File
CreateJacobianAssembler.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

#include "BaseLib/ConfigTree.h"

namespace ProcessLib
{
class AbstractJacobianAssembler;

std::unique_ptr<AbstractJacobianAssembler> createJacobianAssembler(
    std::optional<BaseLib::ConfigTree> const& config);
}  // ProcessLib
back to top