swh:1:snp:f521c49ab17ef7db6ec70b2430e1ed203f50383f
Raw File
Tip revision: 4b52aaf8f08749a5a1203ae9c74b109901ea7b78 authored by Thomas Fischer on 02 November 2021, 07:45:13 UTC
[NL] Remove methods only used in tests.
Tip revision: 4b52aaf
Adaptor.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
 *
 */

#pragma once

#include "BaseLib/ConfigTree.h"

namespace MeshLib {
    class Mesh;
}

namespace InSituLib {
void Initialize(BaseLib::ConfigTree const& scripts_config,
                std::string const& path);
void Finalize();
void CoProcess(MeshLib::Mesh const& mesh, double const time,
               unsigned int const timeStep, bool const lastTimeStep,
               std::string output_directory);
}
back to top