Revision 850ea6c64716460cce0835121cb9a9c937224756 authored by Michael Pitz on 12 October 2021, 10:58:46 UTC, committed by Dmitry Yu. Naumov on 19 October 2021, 08:42:30 UTC
1 parent 7486f8d
Raw File
CreateTimeStepper.h
/**
 * \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
 *
 *  \file
 *  Created on May 2, 2017, 12:18 PM
 */

#pragma once

#include <memory>

namespace BaseLib
{
class ConfigTree;
}

namespace NumLib
{
class TimeStepAlgorithm;
std::unique_ptr<TimeStepAlgorithm> createTimeStepper(
    BaseLib::ConfigTree const& config);
};  // namespace NumLib
back to top