swh:1:snp:f521c49ab17ef7db6ec70b2430e1ed203f50383f
Raw File
Tip revision: 0424272874845111f62cf73bfa238b65be8996cd authored by Thomas Fischer on 05 August 2021, 07:41:46 UTC
[MeL] Make getNodeIDinElement a free function.
Tip revision: 0424272
PythonSourceTermModule.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 <pybind11/pybind11.h>

#include "BaseLib/ExportSymbol.h"

namespace ProcessLib
{
namespace SourceTerms
{
namespace Python
{
//! Creates Python bindings for the Python source term class.
OGS_EXPORT_SYMBOL void pythonBindSourceTerm(pybind11::module& m);
}  // namespace Python
}  // namespace SourceTerms
}  // namespace ProcessLib
back to top