Revision d5d88a379d77749fb6a3cd16c394a199eafa8962 authored by Lars Bilke on 20 July 2021, 08:31:29 UTC, committed by Lars Bilke on 20 July 2021, 08:31:29 UTC
[cmake,qt] Disabled AUTOUIC for QtDataView and VtkVis.

Closes #3172

See merge request ogs/ogs!3710
2 parent s 0c6b53e + 9651e22
Raw File
CreateLiquidFlowProcess.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 August 19, 2016, 1:30 PM
 */

#pragma once

#include <memory>
#include "ProcessLib/Process.h"

namespace MaterialPropertyLib
{
class Medium;
}

namespace ProcessLib
{
namespace LiquidFlow
{
std::unique_ptr<Process> createLiquidFlowProcess(
    std::string name,
    MeshLib::Mesh& mesh,
    std::unique_ptr<ProcessLib::AbstractJacobianAssembler>&& jacobian_assembler,
    std::vector<ProcessVariable> const& variables,
    std::vector<std::unique_ptr<ParameterLib::ParameterBase>> const& parameters,
    unsigned const integration_order,
    BaseLib::ConfigTree const& config,
    std::vector<std::unique_ptr<MeshLib::Mesh>> const& meshes,
    std::map<int, std::shared_ptr<MaterialPropertyLib::Medium>> const& media);
}  // namespace LiquidFlow
}  // namespace ProcessLib
back to top