Revision 7f4d9474ec88e4f441a4ccf749f1d9c4420fc21c authored by Thomas Fischer on 10 June 2021, 07:51:31 UTC, committed by Thomas Fischer on 16 June 2021, 05:13:59 UTC
1 parent bd55787
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);
};
back to top