https://gitlab.opengeosys.org/ogs/ogs.git
Revision 42c0b4950762d786d6fb753f9d34ff4fd65d0c17 authored by Dmitry Yu. Naumov on 25 March 2021, 18:19:09 UTC, committed by Dmitry Yu. Naumov on 25 March 2021, 18:19:09 UTC
[PL/THM] Add initial_stress input.

See merge request ogs/ogs!3541
2 parent s eb25855 + b2208f3
Raw File
Tip revision: 42c0b4950762d786d6fb753f9d34ff4fd65d0c17 authored by Dmitry Yu. Naumov on 25 March 2021, 18:19:09 UTC
Merge branch 'THMInitialStress' into 'master'
Tip revision: 42c0b49
ExportSymbol.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

#ifndef OGS_EXPORT_SYMBOL
#  if defined(WIN32) || defined(_WIN32)
#    define OGS_EXPORT_SYMBOL __declspec(dllexport)
#  else
#    define OGS_EXPORT_SYMBOL __attribute__((visibility("default")))
#  endif
#endif  // defined(OGS_EXPORT_SYMBOL)


back to top