Revision 0c68c226f2dd4f93a020c0565d65246719e0a50f authored by Wenqing Wang on 25 January 2021, 15:35:38 UTC, committed by Wenqing Wang on 25 January 2021, 15:35:38 UTC
1 parent c17dd18
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(
    boost::optional<BaseLib::ConfigTree> const& config);
}  // ProcessLib
back to top