Revision ff15d0990a58a14bd5ee5f77e9729a23de2ea350 authored by Dmitry Yu. Naumov on 11 May 2021, 10:12:36 UTC, committed by Dmitry Yu. Naumov on 11 May 2021, 10:12:36 UTC
Add doxygen documentition for line source terms.

See merge request ogs/ogs!3618
2 parent s e4b016b + a8315a5
Raw File
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